fix(cli): don't ignore critical errors (#1150)

Thrown java.lang.Error was ignored and not logged.
This commit is contained in:
Skylot
2022-05-19 23:12:19 +01:00
parent 0606c90f22
commit 49137c9751
+1 -1
View File
@@ -21,7 +21,7 @@ public class JadxCLI {
} 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 {