Package de.uplanet.net.http
Klasse HttpClientErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.uplanet.net.http.HttpErrorException
de.uplanet.net.http.HttpClientErrorException
- Alle implementierten Schnittstellen:
Serializable
- Bekannte direkte Unterklassen:
HttpBadRequestException,HttpForbiddenException,HttpMethodNotAllowedException,HttpNotFoundException,HttpRangeNotSatisfiableException,HttpUnauthorizedException
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungHttpClientErrorException(int p_iStatus) Create a HTTP client exception with the given status code in the range from 400 to 499.HttpClientErrorException(int p_iStatus, String p_strMessage) Create a HTTP client exception with the given status code in the range from 400 to 499.HttpClientErrorException(int p_iStatus, String p_strMessage, Throwable p_cause) Create a HTTP client exception with the given status code in the range from 400 to 499.HttpClientErrorException(int p_iStatus, Throwable p_cause) Create a HTTP client exception with the given status code in the range from 400 to 499. -
Methodenübersicht
Von Klasse geerbte Methoden de.uplanet.net.http.HttpErrorException
getStatus, getStatusMessageVon Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
HttpClientErrorException
public HttpClientErrorException(int p_iStatus) Create a HTTP client exception with the given status code in the range from 400 to 499.- Parameter:
p_iStatus- The status code.
-
HttpClientErrorException
Create a HTTP client exception with the given status code in the range from 400 to 499.- Parameter:
p_iStatus- The status code.p_strMessage- An error message that can be later retrieved by theThrowable.getMessage()method.
-
HttpClientErrorException
Create a HTTP client exception with the given status code in the range from 400 to 499.- Parameter:
p_iStatus- The status code.p_cause- The cause that can be later retrieved by theThrowable.getCause()method.
-
HttpClientErrorException
Create a HTTP client exception with the given status code in the range from 400 to 499.- Parameter:
p_iStatus- The status code.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.
-