Class GenericProvisioningException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.exception.OIMServiceException
oracle.iam.provisioning.exception.GenericProvisioningException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EndDateValidationException
,ObjectAlreadyDisabledException
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionGenericProvisioningException
(String isMessage) Constructs a new GenericProvisioningException with the specified detail message.GenericProvisioningException
(String errorCode, String errorMessage, Serializable[] errorData) Constructs a new GenericProvisioningException with the errorCode, errorMessage and errorData.GenericProvisioningException
(String errorCode, String errorMessage, Serializable[] errorData, Throwable e) Constructs a new GenericProvisioningException with the errorCode, errorMessage, errorData and Throwable.Constructs a new super exception with the specified cause. -
Method Summary
Methods inherited from class oracle.iam.exception.OIMServiceException
addError, copyErrorInfo, getErrorCode, getErrorData, getErrorMessage, getErrors, getLocalizedMessage, hasMultipleErrors, setErrorCode, setErrorData, setErrorMessage, setErrors, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
isMessage
-
-
Constructor Details
-
GenericProvisioningException
Constructs a new GenericProvisioningException with the specified detail message.- Parameters:
isMessage
- The detailed message. The detailed message is saved for later retrieval by the Throwable.getMessage() method.
-
GenericProvisioningException
public GenericProvisioningException(String errorCode, String errorMessage, Serializable[] errorData, Throwable e) Constructs a new GenericProvisioningException with the errorCode, errorMessage, errorData and Throwable.- Parameters:
errorCode
- - Code for the errorerrorMessage
- - Message for the errorerrorData
- - A Serializable array with data for the errore
- - Exception
-
GenericProvisioningException
public GenericProvisioningException(String errorCode, String errorMessage, Serializable[] errorData) Constructs a new GenericProvisioningException with the errorCode, errorMessage and errorData.- Parameters:
errorCode
- - Code for the errorerrorMessage
- - Message for the errorerrorData
- - A Serializable array with data for the error
-
GenericProvisioningException
Constructs a new super exception with the specified cause.- Parameters:
cause
- the cause
-