Skip to content

Commit 4660b0e

Browse files
authored
fix issue 227: Don't stop on caught/uncaught exceptions (#172)
1 parent 80f8dd7 commit 4660b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/ConfigurationDoneRequestHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ private void handleDebugEvent(DebugEvent debugEvent, IDebugSession debugSession,
9595
// ignore since SetBreakpointsRequestHandler has already handled
9696
} else if (event instanceof ExceptionEvent) {
9797
ThreadReference thread = ((ExceptionEvent) event).thread();
98-
ThreadReference bpThread = ((BreakpointEvent) event).thread();
98+
ThreadReference bpThread = ((ExceptionEvent) event).thread();
9999
IEvaluationProvider engine = context.getProvider(IEvaluationProvider.class);
100100
if (engine.isInEvaluation(bpThread)) {
101101
return;

0 commit comments

Comments
 (0)