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 45705b5 commit 6f65755Copy full SHA for 6f65755
graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/test/SocketTests.java
@@ -1093,7 +1093,8 @@ private UniversalSockAddr createUsa(FamilySpecificSockAddr src) {
1093
try {
1094
return lib.createUniversalSockAddrUnix(posixSupport, unixSockAddr);
1095
} catch (InvalidUnixSocketPathException e) {
1096
- throw new RuntimeException(e);
+ assumeNoException(e);
1097
+ return null; // unreachable
1098
}
1099
} else {
1100
throw new AssertionError("Unexpected subclass of FamilySpecificSockAddr: " + src.getClass().getName());
0 commit comments