com.ibm.itim.apps

Class 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 Detail

      • OPERATION_NOT_ALLOWED

        public static final java.lang.String OPERATION_NOT_ALLOWED
        String constant for the operation now allowed error.
        See Also:
        Constant Field Values
    • Constructor Detail

      • AuthorizationException

        public AuthorizationException(java.lang.String errCode)
        Constructs with an error code.
        Parameters:
        errCode - Code for the error.
      • 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.Object[] tokens)
        Constructs with an error code and an extra message string.
        Parameters:
        errCode - Error code identifying the problem.
        tokens - 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.