Class HttpAuthenticationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.wildfly.security.http.HttpAuthenticationException
All Implemented Interfaces:
Serializable

public class HttpAuthenticationException extends IOException
Exception to indicate a general failure with the HTTP authentication mechanism.
Author:
Darran Lofthouse
See Also:
  • Constructor Details

    • HttpAuthenticationException

      public HttpAuthenticationException()
      Constructs a new HttpAuthenticationException. The message is left blank (null), and no cause is specified.
    • HttpAuthenticationException

      public HttpAuthenticationException(String message)
      Constructs a new HttpAuthenticationException. with the message provided, and no cause is specified.
      Parameters:
      message - the message for this HttpAuthenticationException.
    • HttpAuthenticationException

      public HttpAuthenticationException(Throwable cause)
      Constructs a new HttpAuthenticationException with an initial cause.
      Parameters:
      cause - the cause for this HttpAuthenticationException.
    • HttpAuthenticationException

      public HttpAuthenticationException(String message, Throwable cause)
      Constructs a new HttpAuthenticationException with an initial message and cause.
      Parameters:
      message - the message for this HttpAuthenticationException.
      cause - the cause for this HttpAuthenticationException.