fix: stack overflow cause lamdba throw BootstrapMethodError in JDK 8

This commit is contained in:
Skylot
2019-05-11 22:02:04 +03:00
parent 1c914ff286
commit 119709b844
@@ -157,7 +157,7 @@ public final class TypeUpdate {
updateInfo.rollbackUpdate(arg);
}
return result;
} catch (StackOverflowError overflow) {
} catch (StackOverflowError | BootstrapMethodError error) {
throw new JadxOverflowException("Type update terminated with stack overflow, arg: " + arg);
}
}