Package oracle.iam.selfservice.exception
Class SelfServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.exception.OIMServiceException
oracle.iam.platform.utils.SuperException
oracle.iam.selfservice.exception.SelfServiceException
- All Implemented Interfaces:
Serializable
,oracle.iam.platform.utils.io.XmlPrintable
,OIMGenericExceptionIntf
- Direct Known Subclasses:
UnauthenticatedSelfServiceException
public abstract class SelfServiceException
extends oracle.iam.platform.utils.SuperException
implements OIMGenericExceptionIntf
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aSelfServiceException
with null as its detail message.SelfServiceException
(String message) Constructs aSelfServiceException
with the specified detail message.SelfServiceException
(String message, String errorCode) Constructs aSelfServiceException
with the specified detail message and errorCode.SelfServiceException
(String message, String errorCode, Throwable cause) Constructs aSelfServiceException
with the specified detail message, errorCode and cause.SelfServiceException
(String message, Throwable cause) Constructs aSelfServiceException
with the specified detail message and cause.SelfServiceException
(Throwable cause) Constructs aSelfServiceException
with the specified cause. -
Method Summary
Modifier and TypeMethodDescriptionGet error code associated with the exception.Gets the parameter mapString[]
Gets the parametersvoid
setErrorCode
(String errorCode) Sets the error codevoid
setParameterMap
(Map<String, String> paramMap) Sets the parameter mapvoid
setParameters
(String[] params) Sets the parametersMethods inherited from class oracle.iam.platform.utils.SuperException
getLocalizedMessages, getMessages, xprint, xprint
Methods inherited from class oracle.iam.exception.OIMServiceException
addError, copyErrorInfo, getErrorData, getErrorMessage, getErrors, getLocalizedMessage, hasMultipleErrors, setErrorData, setErrorMessage, setErrors, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
SelfServiceException
public SelfServiceException()Constructs aSelfServiceException
with null as its detail message. -
SelfServiceException
Constructs aSelfServiceException
with the specified detail message.- Parameters:
message
- the detail message
-
SelfServiceException
Constructs aSelfServiceException
with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
SelfServiceException
Constructs aSelfServiceException
with the specified detail message and errorCode.- Parameters:
message
- the detail messageerrorCode
- the error code
-
SelfServiceException
Constructs aSelfServiceException
with the specified detail message, errorCode and cause.- Parameters:
message
- the detail messageerrorCode
- the error codecause
- the cause
-
SelfServiceException
Constructs aSelfServiceException
with the specified cause.- Parameters:
cause
- the cause
-
-
Method Details
-
setParameterMap
Description copied from interface:OIMGenericExceptionIntf
Sets the parameter map- Specified by:
setParameterMap
in interfaceOIMGenericExceptionIntf
- Parameters:
paramMap
- parameter map for the exception
-
getParameterMap
Description copied from interface:OIMGenericExceptionIntf
Gets the parameter map- Specified by:
getParameterMap
in interfaceOIMGenericExceptionIntf
- Returns:
- parameter map for the exception
-
setParameters
Description copied from interface:OIMGenericExceptionIntf
Sets the parameters- Specified by:
setParameters
in interfaceOIMGenericExceptionIntf
- Parameters:
params
- parameters for the exception
-
getParameters
Description copied from interface:OIMGenericExceptionIntf
Gets the parameters- Specified by:
getParameters
in interfaceOIMGenericExceptionIntf
- Returns:
- parameters for the exception
-
setErrorCode
Description copied from interface:OIMGenericExceptionIntf
Sets the error code- Specified by:
setErrorCode
in interfaceOIMGenericExceptionIntf
- Overrides:
setErrorCode
in classOIMServiceException
- Parameters:
errorCode
- error code of the exception
-
getErrorCode
Description copied from class:OIMServiceException
Get error code associated with the exception.- Specified by:
getErrorCode
in interfaceOIMGenericExceptionIntf
- Overrides:
getErrorCode
in classOIMServiceException
- Returns:
- error code associated with the exception.
-