Package de.uplanet.net.http
Class HttpBadRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.uplanet.net.http.HttpErrorException
de.uplanet.net.http.HttpClientErrorException
de.uplanet.net.http.HttpBadRequestException
- All Implemented Interfaces:
Serializable
This exception corresponds to the HTTP 400 status code.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a HTTP exception with the status code400 Bad Request
.HttpBadRequestException
(String p_strMessage) Create a HTTP exception with the status code400 Bad Request
.HttpBadRequestException
(String p_strMessage, Throwable p_cause) Create a HTTP exception with the status code400 Bad Request
.HttpBadRequestException
(Throwable p_cause) Create a HTTP exception with the status code400 Bad Request
. -
Method Summary
Modifier and TypeMethodDescriptionint
Get the HTTP status associated with this error.Methods inherited from class de.uplanet.net.http.HttpErrorException
getStatusMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HttpBadRequestException
public HttpBadRequestException()Create a HTTP exception with the status code400 Bad Request
. -
HttpBadRequestException
Create a HTTP exception with the status code400 Bad Request
.- Parameters:
p_strMessage
- An error message that can be later retrieved by theThrowable.getMessage()
method.
-
HttpBadRequestException
Create a HTTP exception with the status code400 Bad Request
.- Parameters:
p_cause
- The cause that can be later retrieved by theThrowable.getCause()
method.
-
HttpBadRequestException
Create a HTTP exception with the status code400 Bad Request
.- Parameters:
p_strMessage
- An error message that can be later retrieved by theThrowable.getMessage()
method.p_cause
- The cause that can be later retrieved by theThrowable.getCause()
method.
-
-
Method Details
-
getStatus
public int getStatus()Description copied from class:HttpErrorException
Get the HTTP status associated with this error.- Overrides:
getStatus
in classHttpErrorException
- Returns:
- The HTTP status code
400 Bad Request
.
-