Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/io/PosixShim.java
Original file line number Diff line number Diff line change
@@ -412,7 +412,7 @@ public Channel open(String cwd, String path, ModeFlags flags, int perm, ClassLoa
} catch (ResourceException.TooManySymlinks e) {
errno = Errno.ELOOP;
} catch (IOException e) {
throw new RuntimeException("Unhandled IOException", e);
throw new RuntimeException("Unhandled IOException" + e.getLocalizedMessage(), e);
}
return null;
}

0 comments on commit 6c81bc1

Please sign in to comment.