Skip to content
Snippets Groups Projects
Commit fc0739ce authored by Mick Jordan's avatar Mick Jordan
Browse files

handle Truffle API change (missed a class)

parent f0def168
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ public class TraceHandling {
}
@Override
public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Exception exception) {
public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Throwable exception) {
if (!disabled()) {
indent -= INDENT;
}
......@@ -168,7 +168,7 @@ public class TraceHandling {
}
public void onReturnExceptional(Probe probe, Node node, VirtualFrame vFrame, Exception exception) {
public void onReturnExceptional(Probe probe, Node node, VirtualFrame vFrame, Throwable exception) {
if (!disabled()) {
//
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment