public class AuthorizationException extends ApplicationException
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
OPERATION_NOT_ALLOWED
String constant for the operation now allowed error.
|
| Constructor and Description |
|---|
AuthorizationException(java.lang.String errCode)
Constructs with an error code.
|
AuthorizationException(java.lang.String errCode,
java.lang.Object[] tokens)
Constructs with an error code and an extra message string.
|
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.
|
getErrorCode, getExtraMessagegetLocalizedMessage, getMessage, getMessage, getMessageId, getThrowable, getTokens, normalize, printStackTrace, printStackTrace, printStackTrace, toXMLpublic static final java.lang.String OPERATION_NOT_ALLOWED
public AuthorizationException(java.lang.String errCode)
errCode - Code for the error.public AuthorizationException(java.lang.String errCode,
java.lang.String exMsg)
errCode - Error code identifying the problem.exMsg - Additional information in a String.public AuthorizationException(java.lang.String errCode,
java.lang.Object[] tokens)
errCode - Error code identifying the problem.tokens - Additional information in a String.public AuthorizationException(java.lang.String errCode,
java.lang.Throwable cause)
errCode - Error code identifying the problem.cause - Throwable representing the exception causing this exception.