|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
com.hyperion.css.CSSException
com.hyperion.css.CSSPasswordPolicyException
com.hyperion.css.CSSPasswordExpiredException
Handler for password expired exception.
Field Summary |
Fields inherited from class com.hyperion.css.CSSException |
area_Code, error_Code, errorArguments, errorCode, errorMessage, hasErrorArguments, hasRootCause, locale, logLevel, messageBundleName, providerName, rootCausesList, rootException, rootMessagesList |
Constructor Summary | |
CSSPasswordExpiredException(long areaCode,
long errorCode)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
int logLevel)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.String[] errorArguments)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.String[] errorArguments,
int logLevel)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.String[] errorArguments,
java.lang.Throwable rootException)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.String[] errorArguments,
java.lang.Throwable rootException,
int logLevel)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.Throwable rootException)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(long areaCode,
long errorCode,
java.lang.Throwable rootException,
int logLevel)
Constructs a new exception with the specified error code. |
|
CSSPasswordExpiredException(java.lang.String s)
Deprecated. |
Methods inherited from class com.hyperion.css.CSSPasswordPolicyException |
getPasswordPolicyErrorCode, getPasswordPolicyErrorCode, getRedirectURL, hasPasswordPolicyError, setRedirectURL |
Methods inherited from class com.hyperion.css.CSSException |
getCSSAreaCode, getCSSErrorCode, getErrorCode, getMessage, getMessage, getMessage, getProvider, getRootCause, getRootCauses, getRootMessages, printStackTrace, printStackTrace, printStackTrace, setErrorCode, setLocale, setRootCause, toString |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public CSSPasswordExpiredException(java.lang.String s)
s
- public CSSPasswordExpiredException(long areaCode, long errorCode)
This constructor will log the error message by default in
CSSLogger.ERROR_LEVEL
.
The error codes are defined in
CSSErrorCodeIF
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.public CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.String[] errorArguments)
This constructor will log the error message by default in
CSSLogger.ERROR_LEVEL
.
The error codes are defined in
CSSErrorCodeIF
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
new String[] { "argurments" });
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.errorArguments
- -
the error arguments to be assinged into error message.public CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.String[] errorArguments, int logLevel)
This constructor will log the error message for the specified log level.
The error codes are defined in
CSSErrorCodeIF
The level should be one of the following:
CSSLogger.FATAL_LEVEL
CSSLogger.ERROR_LEVEL
CSSLogger.WARN_LEVEL
CSSLogger.INFO_LEVEL
CSSLogger.DEBUG_LEVEL
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
new String[] { "argurments" }, CSSLogger.DEBUG_LEVEL);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.errorArguments
- -
the error arguments to be assinged into error message.logLevel
- -
the level of the logging requestpublic CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.Throwable rootException)
This constructor will log the error message by default in
CSSLogger.ERROR_LEVEL
.
The stack trace would be logged only if DEBUG level is enabled else only the error message is logged.
The error codes are defined inCSSErrorCodeIF
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
rootException);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.rootException
- -
the root cause (which is saved for later retrieval by the
CSSException.getRootCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.Throwable rootException, int logLevel)
This constructor will log the error message for the specified log level.
The stack trace would be logged only if DEBUG level is enabled else only the error message is logged.
The error codes are defined inCSSErrorCodeIF
The level should be one of the following:
CSSLogger.FATAL_LEVEL
CSSLogger.ERROR_LEVEL
CSSLogger.WARN_LEVEL
CSSLogger.INFO_LEVEL
CSSLogger.DEBUG_LEVEL
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
rootException, CSSLogger.DEBUG_LEVEL);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.rootException
- -
the root cause (which is saved for later retrieval by the
CSSException.getRootCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)logLevel
- -
the level of the logging requestpublic CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.String[] errorArguments, java.lang.Throwable rootException)
This constructor will log the error message by default in
CSSLogger.ERROR_LEVEL
.
The stack trace would be logged only if DEBUG level is enabled else only the error message is logged.
The error codes are defined inCSSErrorCodeIF
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
new String[] { "argurments" }, rootException);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.errorArguments
- -
the error arguments to be assinged into error message.rootException
- -
the root cause (which is saved for later retrieval by the
CSSException.getRootCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public CSSPasswordExpiredException(long areaCode, long errorCode, java.lang.String[] errorArguments, java.lang.Throwable rootException, int logLevel)
This constructor will log the error message for the specified log level.
The stack trace would be logged only if DEBUG level is enabled else only the error message is logged.
The error codes are defined inCSSErrorCodeIF
The level should be one of the following:
CSSLogger.FATAL_LEVEL
CSSLogger.ERROR_LEVEL
CSSLogger.WARN_LEVEL
CSSLogger.INFO_LEVEL
CSSLogger.DEBUG_LEVEL
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
new String[] { "argurments" }, rootException);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.errorArguments
- -
the error arguments to be assinged into error message.rootException
- -
the root cause (which is saved for later retrieval by the
CSSException.getRootCause()
method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)logLevel
- -
the level of the logging requestpublic CSSPasswordExpiredException(long areaCode, long errorCode, int logLevel)
This constructor will log the error message for the specified log level.
The error codes are defined in
CSSErrorCodeIF
The level should be one of the following:
CSSLogger.FATAL_LEVEL
CSSLogger.ERROR_LEVEL
CSSLogger.WARN_LEVEL
CSSLogger.INFO_LEVEL
CSSLogger.DEBUG_LEVEL
Sample use of the exception:
throw new CSSPasswordExpiredException(CSSErrorCodeIF.GENERAL_ERROR,
CSSLogger.DEBUG_LEVEL);
areaCode
- -
the area code of the error occured.errorCode
- -
the error code of the error message. The detail message is
saved for later retrieval by the CSSException.getMessage()
method.logLevel
- -
the level of the logging request
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |