We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec21ef commit 6b96c74Copy full SHA for 6b96c74
src/test/java/org/jsoup/integration/SessionIT.java
@@ -194,7 +194,7 @@ static class ThreadCatcher implements Thread.UncaughtExceptionHandler {
194
public void uncaughtException(Thread t, Throwable e) {
195
if (e.getMessage().contains("Multiple threads"))
196
multiThreadExceptions.incrementAndGet();
197
- else
+ else if (!(e instanceof InterruptedException))
198
e.printStackTrace();
199
exceptionCount.incrementAndGet();
200
}
0 commit comments