未验证 提交 49137c97 编写于 作者: S Skylot

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

Thrown java.lang.Error was ignored and not logged.
上级 0606c90f
......@@ -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 {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册