com.ibm.itim.authentication
Class AuthenticationFailedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ibm.itim.authentication.AuthenticationException
                    |
                    +--com.ibm.itim.authentication.AuthenticationFailedException
All Implemented Interfaces:
java.io.Serializable

public class AuthenticationFailedException
extends AuthenticationException

AuthenticationFailedException is a class that extends the Exception class for identifying authentication failure exceptions. This exception is thrown when the user credentials are deemed invalid. This could mean that the principal and/or the key are invalid.

Author:
Tony Gullotta
See Also:
Serialized Form

Constructor Summary
AuthenticationFailedException()
          Constructs an AuthenticationFailedException.
AuthenticationFailedException(java.lang.String explanation)
          Constructs an AuthenticationFailedException with a detailed explanation of the reason for the exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AuthenticationFailedException

public AuthenticationFailedException()
Constructs an AuthenticationFailedException.

AuthenticationFailedException

public AuthenticationFailedException(java.lang.String explanation)
Constructs an AuthenticationFailedException with a detailed explanation of the reason for the exception.
Parameters:
explanation - detailed explanation of the reason for the exception.