HTTPClient
Class RetryException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
HTTPClient.RetryException
- All Implemented Interfaces:
- java.io.Serializable
- class RetryException
- extends java.io.IOException
Signals that an exception was thrown and caught, and the request was
retried.
- Version:
- 0.3-2 18/06/1999
| Nested classes inherited from class java.lang.Throwable |
|
|
Field Summary |
(package private) boolean |
conn_reset
was this exception generated because of an abnormal connection reset? |
(package private) java.io.IOException |
exception
the original exception which caused the connection to be closed. |
(package private) RetryException |
first
the start of the liked list |
(package private) RetryException |
next
the next exception in the list |
(package private) Request |
request
the request to retry |
(package private) Response |
response
the response associated with the above request |
(package private) boolean |
restart
restart processing? |
| Fields inherited from class java.lang.Throwable |
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
request
Request request
- the request to retry
response
Response response
- the response associated with the above request
first
RetryException first
- the start of the liked list
next
RetryException next
- the next exception in the list
exception
java.io.IOException exception
- the original exception which caused the connection to be closed.
conn_reset
boolean conn_reset
- was this exception generated because of an abnormal connection reset?
restart
boolean restart
- restart processing?
RetryException
public RetryException()
- Constructs an RetryException with no detail message.
A detail message is a String that describes this particular exception.
RetryException
public RetryException(java.lang.String s)
- Constructs an RetryException class with the specified detail message.
A detail message is a String that describes this particular exception.
addToListAfter
void addToListAfter(RetryException re)
- Inserts this exception into the list.