Class RequestAuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.ws.rs.ProcessingException
-
- org.glassfish.jersey.client.authentication.RequestAuthenticationException
-
- All Implemented Interfaces:
java.io.Serializable
public class RequestAuthenticationException extends javax.ws.rs.ProcessingException
Exception thrown by security request authentication.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestAuthenticationException(java.lang.String message)
Creates new instance of this exception with exception message.RequestAuthenticationException(java.lang.String message, java.lang.Throwable cause)
Creates new instance of this exception with exception message and exception cause.RequestAuthenticationException(java.lang.Throwable cause)
Creates new instance of this exception with exception cause.
-
-
-
Constructor Detail
-
RequestAuthenticationException
public RequestAuthenticationException(java.lang.Throwable cause)
Creates new instance of this exception with exception cause.- Parameters:
cause
- Exception cause.
-
RequestAuthenticationException
public RequestAuthenticationException(java.lang.String message)
Creates new instance of this exception with exception message.- Parameters:
message
- Exception message.
-
RequestAuthenticationException
public RequestAuthenticationException(java.lang.String message, java.lang.Throwable cause)
Creates new instance of this exception with exception message and exception cause.- Parameters:
message
- Exception message.cause
- Exception cause.
-
-