Class AuthenticationMechanismException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.security.access.extension.authn.AuthenticationMechanismException
-
- All Implemented Interfaces:
java.io.Serializable
public class AuthenticationMechanismException extends java.lang.Exception
This class represents an authentication mechanism exception. This exception is thrown when the authentication mechanism is unable to authenticate the user.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationMechanismException(java.lang.String message)
Create an authentication mechanism exception with the specified message.AuthenticationMechanismException(java.lang.String message, java.lang.Throwable cause)
Create an authentication mechanism exception with the specified message and cause.
-
-
-
Constructor Detail
-
AuthenticationMechanismException
public AuthenticationMechanismException(java.lang.String message)
Create an authentication mechanism exception with the specified message.- Parameters:
message
- The message.
-
AuthenticationMechanismException
public AuthenticationMechanismException(java.lang.String message, java.lang.Throwable cause)
Create an authentication mechanism exception with the specified message and cause.- Parameters:
message
- The message.cause
- The cause.
-
-