Class ResponseAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.ws.rs.ProcessingException
jakarta.ws.rs.client.ResponseProcessingException
org.glassfish.jersey.client.authentication.ResponseAuthenticationException
- All Implemented Interfaces:
Serializable
Exception thrown by security response authentication.
- Author:
- Petr Bouda
- See Also:
-
Constructor Summary
ConstructorDescriptionResponseAuthenticationException
(Response response, String message) Creates new instance of this exception with exception message.ResponseAuthenticationException
(Response response, String message, Throwable cause) Creates new instance of this exception with exception message and exception cause.ResponseAuthenticationException
(Response response, Throwable cause) Creates new instance of this exception with exception cause. -
Method Summary
Methods inherited from class jakarta.ws.rs.client.ResponseProcessingException
getResponse
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResponseAuthenticationException
Creates new instance of this exception with exception cause.- Parameters:
response
- the response instance for which the processing failed.cause
- Exception cause.
-
ResponseAuthenticationException
Creates new instance of this exception with exception message.- Parameters:
response
- the response instance for which the processing failed.message
- Exception message.
-
ResponseAuthenticationException
Creates new instance of this exception with exception message and exception cause.- Parameters:
response
- the response instance for which the processing failed.message
- Exception message.cause
- Exception cause.
-