Skip to content

Commit

Permalink
Continue Decompiling On Parsing Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Konloch committed Sep 27, 2024
1 parent ddd31b5 commit 89a2640
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void parse()
CompilationUnit compilationUnit = StaticJavaParser.parse(this.content);
compilationUnit.accept(new MyVoidVisitor(this, compilationUnit), null);
}
catch (java.lang.ClassCastException | UnsolvedSymbolException | ParseProblemException e)
catch (java.util.NoSuchElementException | java.lang.ClassCastException | UnsolvedSymbolException | ParseProblemException e)
{
System.err.println("Parsing error!");
e.printStackTrace();
Expand Down

0 comments on commit 89a2640

Please sign in to comment.