Package org.apache.commons.httpclient
Class HttpRecoverableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.apache.commons.httpclient.HttpException
-
- org.apache.commons.httpclient.HttpRecoverableException
-
- All Implemented Interfaces:
java.io.Serializable
public class HttpRecoverableException extends HttpException
Deprecated.no longer usedSignals that an HTTP or HttpClient exception has occurred. This exception may have been caused by a transient error and the request may be retried. It may be possible to retrieve the underlying transient error via the inherited
HttpException.getCause()
method.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpRecoverableException()
Deprecated.Creates a new HttpRecoverableException with a null detail message.HttpRecoverableException(java.lang.String message)
Deprecated.Creates a new HttpRecoverableException with the specified detail message.
-
Method Summary
-
Methods inherited from class org.apache.commons.httpclient.HttpException
getCause, getReason, getReasonCode, printStackTrace, printStackTrace, printStackTrace, setReason, setReasonCode
-
-
-
-
Constructor Detail
-
HttpRecoverableException
public HttpRecoverableException()
Deprecated.Creates a new HttpRecoverableException with a null detail message.
-
HttpRecoverableException
public HttpRecoverableException(java.lang.String message)
Deprecated.Creates a new HttpRecoverableException with the specified detail message.- Parameters:
message
- exception message
-
-