org.opends.server.admin.client
Class AuthenticationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.opends.server.types.OpenDsException
              extended by org.opends.server.admin.AdminException
                  extended by org.opends.server.admin.client.AdminClientException
                      extended by org.opends.server.admin.client.AdminSecurityException
                          extended by org.opends.server.admin.client.AuthenticationException
All Implemented Interfaces:
java.io.Serializable

public class AuthenticationException
extends AdminSecurityException

This exception is thrown when an authentication error occurs while connecting to the Directory Server. An authentication error can happen, for example, when the client credentials are invalid.

See Also:
Serialized Form

Constructor Summary
AuthenticationException()
          Creates an authentication exception with a default message.
AuthenticationException(Message message)
          Create an authentication exception with a message.
AuthenticationException(Message message, java.lang.Throwable cause)
          Create an authentication exception with a message and cause.
AuthenticationException(java.lang.Throwable cause)
          Create an authentication exception with a cause and a default message.
 
Method Summary
 
Methods inherited from class org.opends.server.types.OpenDsException
getMessageObject
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AuthenticationException

public AuthenticationException()
Creates an authentication exception with a default message.


AuthenticationException

public AuthenticationException(java.lang.Throwable cause)
Create an authentication exception with a cause and a default message.

Parameters:
cause - The cause.

AuthenticationException

public AuthenticationException(Message message,
                               java.lang.Throwable cause)
Create an authentication exception with a message and cause.

Parameters:
message - The message.
cause - The cause.

AuthenticationException

public AuthenticationException(Message message)
Create an authentication exception with a message.

Parameters:
message - The message.