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

handle Truffle API change

parent 3004efab
Branches
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ public class REntryCounters {
}
@Override
public void onReturnExceptional(Probe probe, Exception exception) {
public void onReturnExceptional(Probe probe, Throwable exception) {
returnAny(probe);
}
......
......@@ -75,7 +75,7 @@ public class RNodeTimer {
}
@Override
public void onReturnExceptional(Probe probe, Exception exception) {
public void onReturnExceptional(Probe probe, Throwable exception) {
returnAny(probe);
}
......
......@@ -206,7 +206,7 @@ public class DebugHandling {
}
@Override
public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Exception exception) {
public void onReturnExceptional(Probe probe, Node node, VirtualFrame frame, Throwable exception) {
}
boolean disabled() {
......@@ -371,7 +371,7 @@ public class DebugHandling {
}
@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()) {
returnCleanup(frame);
}
......@@ -467,7 +467,7 @@ public class DebugHandling {
}
@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()) {
returnCleanup();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment