Class BulkException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.exception.OIMServiceException
oracle.iam.provisioning.exception.BulkException
- All Implemented Interfaces:
Serializable
,Cloneable
This exception is raised whenever a bulk operation is called and the
operation is only successfull on some of the bulk transactions. If this
happens, a tcBulkOperation is raise and the keys that failed are stored in
isKeys with their respective error messages in isErrorMessages. In
Addition, if the operation returned information back, that information can
be set in the using setReturnValue by the API. The caller will need to get
the return value and cast it to the respective object based on the
information about the API that is called.
- Since:
- 7.2
- Version:
- 1.2
- Author:
- Mario Lim
- See Also:
-
Constructor Summary
Constructors -
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
-
Constructor Details
-
BulkException
public BulkException()Creates a new BulkException object.
-