Searched defs:rememberedException (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java346 private Exception rememberedException = null; field in class:HttpURLConnection
1240 if (rememberedException != null) {
1241 if (rememberedException instanceof RuntimeException)
1242 throw new RuntimeException(rememberedException);
1244 throw getChainedException((IOException)rememberedException);
1640 rememberedException = e;
1643 rememberedException = e;
1668 private IOException getChainedException(final IOException rememberedException) { argument
1670 final Object[] args = { rememberedException.getMessage() };
1676 rememberedException
[all...]

Completed in 36 milliseconds