com.ibm.itim.apps
Class AuthorizationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ibm.itim.exception.ITIMException
                    |
                    +--com.ibm.itim.apps.ApplicationException
                          |
                          +--com.ibm.itim.apps.AuthorizationException
All Implemented Interfaces:
java.io.Serializable

public class AuthorizationException
extends ApplicationException

This class identifies an authorization failure. The user has attempted to access data that they do not have access to, or has performed an operation they are not authorized to execute.

See Also:
Serialized Form

Field Summary
static java.lang.String OPERATION_NOT_ALLOWED
           
 
Constructor Summary
AuthorizationException(java.lang.String errCode)
          Constructs with an error code.
AuthorizationException(java.lang.String errCode, java.lang.String exMsg)
          Constructs with an error code and an extra message string.
AuthorizationException(java.lang.String errCode, java.lang.Throwable cause)
          Constructs with an error code and the cause exception.
 
Methods inherited from class com.ibm.itim.apps.ApplicationException
getErrorCode, getExtraMessage
 
Methods inherited from class com.ibm.itim.exception.ITIMException
getMessage, getMessage, getMessageId, getThrowable, getTokens, normalize, printStackTrace, printStackTrace, printStackTrace, toXML
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

OPERATION_NOT_ALLOWED

public static final java.lang.String OPERATION_NOT_ALLOWED
Constructor Detail

AuthorizationException

public AuthorizationException(java.lang.String errCode)
Constructs with an error code.

AuthorizationException

public AuthorizationException(java.lang.String errCode,
                              java.lang.String exMsg)
Constructs with an error code and an extra message string.
Parameters:
errCode - Error code identifying the problem.
exMsg - Additional information in a String.

AuthorizationException

public AuthorizationException(java.lang.String errCode,
                              java.lang.Throwable cause)
Constructs with an error code and the cause exception.
Parameters:
errCode - Error code identifying the problem.
cause - Throwable representing the exception causing this exception.