Minor. Replace Exception with Throwable in the root catch clause

This commit is contained in:
Denis Zharkov
2016-06-10 18:42:55 +03:00
parent e7b9564699
commit 99511cbf65
@@ -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");
} }