public class ClientErrorException extends WebApplicationException
4xx status codes).| Constructor and Description |
|---|
ClientErrorException(int status)
Construct a new client error exception.
|
ClientErrorException(int status,
Throwable cause)
Construct a new client error exception.
|
ClientErrorException(Response.Status status)
Construct a new client error exception.
|
ClientErrorException(Response.Status status,
Throwable cause)
Construct a new client error exception.
|
ClientErrorException(Response response)
Construct a new client error exception.
|
ClientErrorException(Response response,
Throwable cause)
Construct a new client error exception.
|
getResponseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ClientErrorException(Response.Status status) throws IllegalArgumentException
status - client error status. Must be a 4xx status code.IllegalArgumentException - in case the status code is null or is not from
Response.Status.Family.CLIENT_ERROR status code
family.public ClientErrorException(int status)
throws IllegalArgumentException
status - client error status. Must be a 4xx 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.CLIENT_ERROR
status code family.public ClientErrorException(Response response) throws IllegalArgumentException
response - client error response. Must have a status code set to a 4xx
status code.IllegalArgumentException - in case the response status code is not from the
Response.Status.Family.CLIENT_ERROR status code family.public ClientErrorException(Response.Status status, Throwable cause) throws IllegalArgumentException
status - client error status. Must be a 4xx status code.cause - the underlying cause of the exception.IllegalArgumentException - in case the status code is null or is not from
Response.Status.Family.CLIENT_ERROR status code
family.public ClientErrorException(int status,
Throwable cause)
throws IllegalArgumentException
status - client error status. Must be a 4xx 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.CLIENT_ERROR
status code family.public ClientErrorException(Response response, Throwable cause) throws IllegalArgumentException
response - client error response. Must have a status code set to a 4xx
status code.cause - the underlying cause of the exception.IllegalArgumentException - in case the response status code is not from the
Response.Status.Family.CLIENT_ERROR status code family.Copyright © 2013. All Rights Reserved.