Package org.apache.http
Class HttpException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.http.HttpException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
MethodNotSupportedException
,ProtocolException
,TunnelRefusedException
,TunnelRefusedException
public class HttpException extends java.lang.Exception
Signals that an HTTP exception has occurred.- Since:
- 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpException()
Creates a new HttpException with anull
detail message.HttpException(java.lang.String message)
Creates a new HttpException with the specified detail message.HttpException(java.lang.String message, java.lang.Throwable cause)
Creates a new HttpException with the specified detail message and cause.
-
-
-
Constructor Detail
-
HttpException
public HttpException()
Creates a new HttpException with anull
detail message.
-
HttpException
public HttpException(java.lang.String message)
Creates a new HttpException with the specified detail message.- Parameters:
message
- the exception detail message
-
HttpException
public HttpException(java.lang.String message, java.lang.Throwable cause)
Creates a new HttpException with the specified detail message and cause.- Parameters:
message
- the exception detail messagecause
- theThrowable
that caused this exception, ornull
if the cause is unavailable, unknown, or not aThrowable
-
-