Skip to content

Commit 5d26d4b

Browse files
committed
Seems that building on a machine that has both java 8 & 9 JDKs using the java 8 javac causes java 9 jars to get pulled in.
1 parent b8f6bd6 commit 5d26d4b

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)