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 11faf92 commit a310ff9Copy full SHA for a310ff9
extensions/rest-client/runtime/src/main/java/org/jboss/shamrock/restclient/runtime/RestClientBase.java
@@ -45,7 +45,7 @@ public Object create() {
45
throw new IllegalArgumentException("The value of URL was invalid " + baseUrl);
46
} catch (Exception e) {
47
if ("com.oracle.svm.core.jdk.UnsupportedFeatureError".equals(e.getClass().getCanonicalName())) {
48
- throw new IllegalArgumentException(baseUrl + " requires SSL support but it is disabled. You probably have set shamrock.ssl.native to false.");
+ throw new IllegalArgumentException(baseUrl + " requires SSL support but it is disabled. You probably have set shamrock.ssl.native to false.", e);
49
}
50
throw e;
51
0 commit comments