org.opends.server.admin.client
Class AuthorizationException

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.AuthorizationException
All Implemented Interfaces:
java.io.Serializable

public class AuthorizationException
extends AdminSecurityException

This exception is thrown when an authorization error occurs while interacting with the Directory Server. Authorization errors can occur when a client attempts to perform an administrative operation which they are not permitted to perform.

See Also:
Serialized Form

Constructor Summary
AuthorizationException()
          Create an authorization exception with a default message.
AuthorizationException(Message message)
          Create an authorization exception with a message.
AuthorizationException(Message message, java.lang.Throwable cause)
          Create an authorization exception with a message and cause.
AuthorizationException(java.lang.Throwable cause)
          Create an authorization 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

AuthorizationException

public AuthorizationException()
Create an authorization exception with a default message.


AuthorizationException

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

Parameters:
cause - The cause.

AuthorizationException

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

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

AuthorizationException

public AuthorizationException(Message message)
Create an authorization exception with a message.

Parameters:
message - The message.