Package org.wildfly.security.http
Class HttpAuthenticationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.wildfly.security.http.HttpAuthenticationException
- All Implemented Interfaces:
Serializable
Exception to indicate a general failure with the HTTP authentication mechanism.
- Author:
- Darran Lofthouse
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newHttpAuthenticationException.HttpAuthenticationException(String message) Constructs a newHttpAuthenticationException. with the message provided, and no cause is specified.HttpAuthenticationException(String message, Throwable cause) Constructs a newHttpAuthenticationExceptionwith an initial message and cause.Constructs a newHttpAuthenticationExceptionwith an initial cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HttpAuthenticationException
public HttpAuthenticationException()Constructs a newHttpAuthenticationException. The message is left blank (null), and no cause is specified. -
HttpAuthenticationException
Constructs a newHttpAuthenticationException. with the message provided, and no cause is specified.- Parameters:
message- the message for thisHttpAuthenticationException.
-
HttpAuthenticationException
Constructs a newHttpAuthenticationExceptionwith an initial cause.- Parameters:
cause- the cause for thisHttpAuthenticationException.
-
HttpAuthenticationException
Constructs a newHttpAuthenticationExceptionwith an initial message and cause.- Parameters:
message- the message for thisHttpAuthenticationException.cause- the cause for thisHttpAuthenticationException.
-