com.novell.java.security
Class VerifyTokensException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.novell.java.security.AuthenticatorException
                          |
                          +--com.novell.java.security.VerifyTokensException

public class VerifyTokensException
extends AuthenticatorException

Thrown when an error occurs during the verification of authentication tokens.

See Also:
AuthenticatorException

Constructor Summary
VerifyTokensException()
          The default constructor.
VerifyTokensException(java.lang.String message)
          Constructor with a message.
VerifyTokensException(java.lang.String message, java.lang.Throwable exception)
          Constructor with a message and a root cause exception.
VerifyTokensException(java.lang.Throwable exception)
          Constructor with a root cause exception.
 
Methods inherited from class com.novell.java.security.AuthenticatorException
getRootCause, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VerifyTokensException

public VerifyTokensException()
The default constructor.

VerifyTokensException

public VerifyTokensException(java.lang.String message)
Constructor with a message.
Parameters:
message - A message associated with the exception.

VerifyTokensException

public VerifyTokensException(java.lang.String message,
                             java.lang.Throwable exception)
Constructor with a message and a root cause exception.
Parameters:
message - A message associated with the exception.
exception - The root cause exception.

VerifyTokensException

public VerifyTokensException(java.lang.Throwable exception)
Constructor with a root cause exception.
Parameters:
exception - The root cause exception.