com.novell.java.security
Class AlreadyAuthenticatedException

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

public class AlreadyAuthenticatedException
extends LoginException

Thrown when an identity is already authenticated to a resource that is the target of another authentication.

See Also:
LoginException

Constructor Summary
AlreadyAuthenticatedException()
          Default constructor.
AlreadyAuthenticatedException(java.lang.String message)
          Constructor with String message.
AlreadyAuthenticatedException(java.lang.String message, java.lang.Throwable exception)
          Constructor with String message and a root cause exception.
AlreadyAuthenticatedException(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

AlreadyAuthenticatedException

public AlreadyAuthenticatedException()
Default constructor.

AlreadyAuthenticatedException

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

AlreadyAuthenticatedException

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

AlreadyAuthenticatedException

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