Class RequestAuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.ws.rs.ProcessingException
-
- org.glassfish.jersey.client.authentication.RequestAuthenticationException
-
- All Implemented Interfaces:
Serializable
public class RequestAuthenticationException extends ProcessingException
Exception thrown by security request authentication.- Author:
- Petr Bouda
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestAuthenticationException(String message)Creates new instance of this exception with exception message.RequestAuthenticationException(String message, Throwable cause)Creates new instance of this exception with exception message and exception cause.RequestAuthenticationException(Throwable cause)Creates new instance of this exception with exception cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RequestAuthenticationException
public RequestAuthenticationException(Throwable cause)
Creates new instance of this exception with exception cause.- Parameters:
cause- Exception cause.
-
RequestAuthenticationException
public RequestAuthenticationException(String message)
Creates new instance of this exception with exception message.- Parameters:
message- Exception message.
-
-