Class AuthenticationMechanismException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.security.access.extension.authn.AuthenticationMechanismException
- All Implemented Interfaces:
Serializable
This class represents an authentication mechanism exception. This exception
is thrown when the authentication mechanism is unable to authenticate the
user.
- See Also:
-
Constructor Summary
ConstructorDescriptionAuthenticationMechanismException
(String message) Create an authentication mechanism exception with the specified message.AuthenticationMechanismException
(String message, Throwable cause) Create an authentication mechanism exception with the specified message and 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
-
AuthenticationMechanismException
Create an authentication mechanism exception with the specified message.- Parameters:
message
- The message.
-
AuthenticationMechanismException
Create an authentication mechanism exception with the specified message and cause.- Parameters:
message
- The message.cause
- The cause.
-