Searched refs:rethrow (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java937 boolean rethrow = requireCloseNotify || handshaking;
941 + (rethrow ? "error" : "ignored"));
943 if (rethrow) {
1345 // shutdown and rethrow (wrapped) exception as appropriate
1686 void waitForClose(boolean rethrow) throws IOException { argument
1716 if (rethrow) {
1763 * error. If so, we just rethrow the exception. If the socket has not
1786 // there is nothing to do except rethrow the exception
1810 // rethrow original IOException
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java711 rethrow(t);
804 rethrow(t);
828 private static void rethrow(Throwable t) method in class:DefaultMBeanServerInterceptor
852 rethrow(t);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1856 JCStatement rethrow;
1858 // rethrow = "throw new NoClassDefFoundError().initCause(e);
1864 rethrow = make.Throw(throwExpr);
1871 // rethrow = "throw new NoClassDefFoundError(e.getMessage());"
1872 rethrow = make.
1879 // rethrowStmt := "( $rethrow )"
1880 JCBlock rethrowStmt = make.Block(0, List.of(rethrow));

Completed in 56 milliseconds