com.novell.service.session
Class UnableToAuthenticateException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.novell.service.session.SessionException
                    |
                    +--com.novell.service.session.UnableToAuthenticateException

public class UnableToAuthenticateException
extends SessionException

Thrown when an Authenticatable Session does not have enough information to become authenticated.


Constructor Summary
UnableToAuthenticateException(java.lang.String s)
          Constructs an UnableToAuthenticateException with the specified detail message.
UnableToAuthenticateException(java.lang.String s, java.lang.Throwable rootException)
          Constructs an UnableToAuthenticateException with a detail message and a root-cause exception.
 
Methods inherited from class com.novell.service.session.SessionException
getRootCause, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnableToAuthenticateException

public UnableToAuthenticateException(java.lang.String s)
Constructs an UnableToAuthenticateException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - The detail message description.

UnableToAuthenticateException

public UnableToAuthenticateException(java.lang.String s,
                                     java.lang.Throwable rootException)
Constructs an UnableToAuthenticateException with a detail message and a root-cause exception. The root cause exception can be retrieved using getRootCause().
Parameters:
s - The detail message description.
rootException - The root-cause exception.