Minor. Replace Exception with Throwable in the root catch clause
This commit is contained in:
@@ -120,7 +120,7 @@ public class MethodInliner {
|
|||||||
try {
|
try {
|
||||||
transformedNode.accept(visitor);
|
transformedNode.accept(visitor);
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Throwable e) {
|
||||||
throw wrapException(e, transformedNode, "couldn't inline method call");
|
throw wrapException(e, transformedNode, "couldn't inline method call");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user