Skip to content

Commit

Permalink
fix(cli): don't ignore critical errors (#1150)
Browse files Browse the repository at this point in the history
Thrown java.lang.Error was ignored and not logged.
  • Loading branch information
skylot committed May 19, 2022
1 parent 0606c90 commit 49137c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jadx-cli/src/main/java/jadx/cli/JadxCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void main(String[] args) {
} catch (JadxArgsValidateException e) {
LOG.error("Incorrect arguments: {}", e.getMessage());
result = 1;
} catch (Exception e) {
} catch (Throwable e) {
LOG.error("Process error:", e);
result = 1;
} finally {
Expand Down

0 comments on commit 49137c9

Please sign in to comment.