public class ServerErrorException extends WebApplicationException
5xx status codes).| Constructor and Description |
|---|
ServerErrorException(int status)
Construct a new server error exception.
|
ServerErrorException(int status,
Throwable cause)
Construct a new server error exception.
|
ServerErrorException(Response.Status status)
Construct a new server error exception.
|
ServerErrorException(Response.Status status,
Throwable cause)
Construct a new server error exception.
|
ServerErrorException(Response response)
Construct a new server error exception.
|
ServerErrorException(Response response,
Throwable cause)
Construct a new server error exception.
|
getResponseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ServerErrorException(Response.Status status) throws IllegalArgumentException
status - server error status. Must be a 5xx status code.IllegalArgumentException - in case the status code is null or is not from
Response.Status.Family.SERVER_ERROR status code
family.public ServerErrorException(int status)
throws IllegalArgumentException
status - server error status. Must be a 5xx status code.IllegalArgumentException - in case the status code is not a valid HTTP status code or
if it is not from the Response.Status.Family.SERVER_ERROR
status code family.public ServerErrorException(Response response) throws IllegalArgumentException
response - server error response. Must have a status code set to a 5xx
status code.IllegalArgumentException - in case the response status code is not from the
Response.Status.Family.SERVER_ERROR status code family.public ServerErrorException(Response.Status status, Throwable cause) throws IllegalArgumentException
status - server error status. Must be a 5xx status code.cause - the underlying cause of the exception.IllegalArgumentException - in case the status code is null or is not from
Response.Status.Family.SERVER_ERROR status code
family.public ServerErrorException(int status,
Throwable cause)
throws IllegalArgumentException
status - server error status. Must be a 5xx status code.cause - the underlying cause of the exception.IllegalArgumentException - in case the status code is not a valid HTTP status code or
if it is not from the Response.Status.Family.SERVER_ERROR
status code family.public ServerErrorException(Response response, Throwable cause) throws IllegalArgumentException
response - server error response. Must have a status code set to a 5xx
status code.cause - the underlying cause of the exception.IllegalArgumentException - in case the response status code is not from the
Response.Status.Family.SERVER_ERROR status code family.Copyright © 2013. All Rights Reserved.