Package de.uplanet.net.http
Class HttpServerErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.uplanet.net.http.HttpErrorException
de.uplanet.net.http.HttpServerErrorException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- HttpInternalServerErrorException,- HttpServiceUnavailableException
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionHttpServerErrorException(int p_iStatus) Create a HTTP server exception with the given status code in the range from 500 to 599.HttpServerErrorException(int p_iStatus, String p_strMessage) Create a HTTP server exception with the given status code in the range from 500 to 599.HttpServerErrorException(int p_iStatus, String p_strMessage, Throwable p_cause) Create a HTTP server exception with the given status code in the range from 500 to 599.HttpServerErrorException(int p_iStatus, Throwable p_cause) Create a HTTP server exception with the given status code in the range from 500 to 599.
- 
Method SummaryMethods inherited from class de.uplanet.net.http.HttpErrorExceptiongetStatus, getStatusMessageMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
HttpServerErrorExceptionpublic HttpServerErrorException(int p_iStatus) Create a HTTP server exception with the given status code in the range from 500 to 599.- Parameters:
- p_iStatus- The status code.
 
- 
HttpServerErrorExceptionCreate a HTTP server exception with the given status code in the range from 500 to 599.- Parameters:
- p_iStatus- The status code.
- p_strMessage- An error message that can be later retrieved by the- Throwable.getMessage()method.
 
- 
HttpServerErrorExceptionCreate a HTTP server exception with the given status code in the range from 500 to 599.- Parameters:
- p_iStatus- The status code.
- p_cause- The cause that can be later retrieved by the- Throwable.getCause()method.
 
- 
HttpServerErrorExceptionCreate a HTTP server exception with the given status code in the range from 500 to 599.- Parameters:
- p_iStatus- The status code.
- p_strMessage- An error message that can be later retrieved by the- Throwable.getMessage()method.
- p_cause- The cause that can be later retrieved by the- Throwable.getCause()method.
 
 
-