Package javax.ws.rs
Class RedirectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.ws.rs.WebApplicationException
-
- javax.ws.rs.RedirectionException
-
- All Implemented Interfaces:
java.io.Serializable
public class RedirectionException extends WebApplicationException
A runtime application exception indicating a request redirection (HTTP3xxstatus codes).- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description RedirectionException(int status, java.net.URI location)Construct a new redirection exception.RedirectionException(java.lang.String message, int status, java.net.URI location)Construct a new redirection exception.RedirectionException(java.lang.String message, Response response)Construct a new redirection exception.RedirectionException(java.lang.String message, Response.Status status, java.net.URI location)Construct a new redirection exception.RedirectionException(Response response)Construct a new redirection exception.RedirectionException(Response.Status status, java.net.URI location)Construct a new redirection exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.net.URIgetLocation()Get the redirection response location.-
Methods inherited from class javax.ws.rs.WebApplicationException
getResponse, validate, validate
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RedirectionException
public RedirectionException(Response.Status status, java.net.URI location)
Construct a new redirection exception.- Parameters:
status- redirection status. Must be a3xxredirection code.location- redirection URI placed into the responseLocationheader.- Throws:
java.lang.IllegalArgumentException- in case the status code isnullor is not fromResponse.Status.Family.REDIRECTIONstatus code family.
-
RedirectionException
public RedirectionException(java.lang.String message, Response.Status status, java.net.URI location)Construct a new redirection exception.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).status- redirection status. Must be a3xxredirection code.location- redirection URI placed into the responseLocationheader.- Throws:
java.lang.IllegalArgumentException- in case the status code isnullor is not fromResponse.Status.Family.REDIRECTIONstatus code family.
-
RedirectionException
public RedirectionException(int status, java.net.URI location)Construct a new redirection exception.- Parameters:
status- redirection status. Must be a3xxredirection code.location- redirection URI placed into the responseLocationheader.- Throws:
java.lang.IllegalArgumentException- in case the status code is not a valid HTTP status code or if it is not from theResponse.Status.Family.REDIRECTIONstatus code family.
-
RedirectionException
public RedirectionException(java.lang.String message, int status, java.net.URI location)Construct a new redirection exception.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).status- redirection status. Must be a3xxredirection code.location- redirection URI placed into the responseLocationheader.- Throws:
java.lang.IllegalArgumentException- in case the status code is not a valid HTTP status code or if it is not from theResponse.Status.Family.REDIRECTIONstatus code family.
-
RedirectionException
public RedirectionException(Response response)
Construct a new redirection exception.- Parameters:
response- redirection response. Must have a status code set to a3xxredirection code.- Throws:
java.lang.IllegalArgumentException- in case the response status code is not from theResponse.Status.Family.REDIRECTIONstatus code family.
-
RedirectionException
public RedirectionException(java.lang.String message, Response response)Construct a new redirection exception.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).response- redirection response. Must have a status code set to a3xxredirection code.- Throws:
java.lang.IllegalArgumentException- in case the response status code is not from theResponse.Status.Family.REDIRECTIONstatus code family.
-
-