org.apache.commons.httpclient
public class HttpException extends java.io.IOException
| Constructor and Description |
|---|
HttpException()
Creates a new HttpException with a null 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.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Throwable |
getCause()
Return the Throwable that caused this exception, or null
if the cause is unavailable, unknown, or not a Throwable.
|
java.lang.String |
getReason()
Deprecated.
HttpClient no longer uses this for itself. It is only
provided for compatibility with existing clients, and will be removed
in a future release.
|
int |
getReasonCode()
Deprecated.
HttpClient no longer uses this for itself. It is only
provided for compatibility with existing clients, and will be removed
in a future release.
|
void |
printStackTrace()
Print this HttpException and its stack trace to the standard error stream.
|
void |
printStackTrace(java.io.PrintStream s)
Print this HttpException and its stack trace to the specified print stream.
|
void |
printStackTrace(java.io.PrintWriter s)
Print this HttpException and its stack trace to the specified print writer.
|
void |
setReason(java.lang.String reason)
Deprecated.
HttpClient no longer uses this for itself. It is only
provided for compatibility with existing clients, and will be removed
in a future release.
|
void |
setReasonCode(int code)
Deprecated.
HttpClient no longer uses this for itself. It is only
provided for compatibility with existing clients, and will be removed
in a future release.
|
public HttpException()
public HttpException(java.lang.String message)
message - the exception detail messagepublic HttpException(java.lang.String message,
java.lang.Throwable cause)
message - the exception detail messagecause - the Throwable that caused this exception, or null
if the cause is unavailable, unknown, or not a Throwablepublic java.lang.Throwable getCause()
getCause in class java.lang.Throwablepublic void printStackTrace()
printStackTrace in class java.lang.Throwablepublic void printStackTrace(java.io.PrintStream s)
printStackTrace in class java.lang.Throwables - the PrintStream to which the exception and its stack trace
should be writtenpublic void printStackTrace(java.io.PrintWriter s)
printStackTrace in class java.lang.Throwables - the PrintWriter to which the exception and its stack trace
should be writtenpublic void setReason(java.lang.String reason)
reason - The reason for the exception.public java.lang.String getReason()
public void setReasonCode(int code)
code - The reason for the exception. This is intended to be an
HTTP status code.public int getReasonCode()