src/java.base/share/classes/jdk/internal/misc/JavaLangAccess.java
changeset 51772 5432cebf6627
parent 50820 35f52a3cd6bd
equal deleted inserted replaced
51771:1f805481d8de 51772:5432cebf6627
   303      * @param s the string to encode
   303      * @param s the string to encode
   304      * @return the encoded bytes in utf8
   304      * @return the encoded bytes in utf8
   305      * @throws IllegalArgumentException for malformed surrogates
   305      * @throws IllegalArgumentException for malformed surrogates
   306      */
   306      */
   307     byte[] getBytesUTF8NoRepl(String s);
   307     byte[] getBytesUTF8NoRepl(String s);
       
   308 
       
   309     /**
       
   310      * Set the cause of Throwable
       
   311      * @param cause set t's cause to new value
       
   312      */
       
   313     void setCause(Throwable t, Throwable cause);
   308 }
   314 }