Skip to content

Commit bc09693

Browse files
authored
Merge pull request #533 from SpectraLogic/fix_for_java_8_9_streams_crossed_bug
Fix for https://jira.spectralogic.com/browse/BPBROWSER-408
2 parents b8f6bd6 + 5d26d4b commit bc09693

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/ExceptionClassifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public final class ExceptionClassifier {
2222
private ExceptionClassifier() { }
2323

2424
public static boolean isRecoverableException(final Throwable t) {
25-
if (t instanceof UnrecoverableIOException || t instanceof FileSystemException || t instanceof SecurityException) {
25+
if (t instanceof UnrecoverableIOException || t instanceof FileSystemException || t instanceof SecurityException || t instanceof NoSuchMethodException) {
2626
return false;
2727
}
2828

0 commit comments

Comments
 (0)