< prev index next >

src/java.base/share/classes/java/lang/System.java

Print this page

        

*** 2199,2206 **** --- 2199,2209 ---- public byte[] getBytesUTF8NoRepl(String s) { return StringCoding.getBytesUTF8NoRepl(s); } + public void setCause(Throwable t, Throwable cause) { + t.setCause(cause); + } }); } }
< prev index next >