File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/jruby/ext/openssl/x509store Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -393,13 +393,13 @@ private InputStream wrapJRubyNormalizedInputStream(String file) throws IOExcepti
393
393
}
394
394
catch (FileExistsException ex ) {
395
395
// should not happen because ModeFlag does not contain CREAT.
396
- ex . printStackTrace ( System . err );
397
- throw new IllegalStateException (ex . getMessage (), ex );
396
+ OpenSSL . debugStackTrace ( ex );
397
+ throw new IllegalStateException (ex );
398
398
}
399
399
catch (InvalidValueException ex ) {
400
400
// should not happen because ModeFlasg does not contain APPEND.
401
- ex . printStackTrace ( System . err );
402
- throw new IllegalStateException (ex . getMessage (), ex );
401
+ OpenSSL . debugStackTrace ( ex );
402
+ throw new IllegalStateException (ex );
403
403
}
404
404
}
405
405
}
You can’t perform that action at this time.
0 commit comments