Skip to content

Commit

Permalink
Fix doubly chained parser exception
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Feb 18, 2011
1 parent 01a4b8e commit 4013f6c
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -123,6 +123,8 @@ public void parse() throws NodeFileParserException {
}
}
}
} catch (NodeFileParserException e) {
throw e;
} catch (Exception e) {
throw new NodeFileParserException(e);
}
Expand Down

0 comments on commit 4013f6c

Please sign in to comment.