Class AuthException

All Implemented Interfaces:
Serializable

public class AuthException extends LoginException
Exception thrown when a JASPIC authentication operation fails. This exception is used by authentication modules and contexts to signal errors during the authentication process.
See Also:
  • Constructor Details

    • AuthException

      public AuthException()
      Constructs an AuthException with no detail message.
    • AuthException

      public AuthException(String msg)
      Constructs an AuthException with the specified detail message.
      Parameters:
      msg - the detail message
    • AuthException

      public AuthException(String msg, Throwable cause)
      Construct an instance of AuthException.
      Parameters:
      msg - Exception message
      cause - The cause of the exception
      Since:
      Authentication 3.0
    • AuthException

      public AuthException(Throwable cause)
      Construct an instance of AuthException.
      Parameters:
      cause - The cause of the exception
      Since:
      Authentication 3.0