com.ibm.itim.dataservices.model
Class ModelIntegrityException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.itim.exception.ITIMException
|
+--com.ibm.itim.dataservices.model.ModelException
|
+--com.ibm.itim.dataservices.model.ModelIntegrityException
- All Implemented Interfaces:
- java.io.Serializable
- public class ModelIntegrityException
- extends ModelException
ModelIntegrityException is an exception class used for errors that
arise due to issues with the integrity of the data model. For example,
if the entry representing a defined supervisor cannot be found.
- Author:
- Tony Gullotta
- See Also:
- Serialized Form
Fields inherited from class com.ibm.itim.dataservices.model.ModelException |
ATTR_IN_USE, CREATE_ERROR, DUPLICATE_ENTRY, INVALID_ARG, INVALID_ATTRIBUTES, INVALID_CATEGORY, INVALID_DN, JNDI_OPERATION_ERROR, OBJECT_NOT_FOUND, PROFILE_NOT_FOUND, RELATIONSHIP_NOT_FOUND, REMOVE_ERROR, SERVER_NOT_AVAILABLE |
Constructor Summary |
ModelIntegrityException(java.lang.String message)
Constructs an ModelIntegrityException with a message. |
ModelIntegrityException(java.lang.String msg,
java.lang.Object[] tokenValues,
java.lang.Throwable throwable)
Constructs a checked exception with a msg identifier, an array of message
parameters, and the original exception or error. |
ModelIntegrityException(java.lang.String msg,
java.lang.Throwable cause)
Constructs an ModelIntegrityException with a message and original exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, toString |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ModelIntegrityException
public ModelIntegrityException(java.lang.String message)
- Constructs an ModelIntegrityException with a message.
- Parameters:
message
- String holding a descriptive message about the exception.
ModelIntegrityException
public ModelIntegrityException(java.lang.String msg,
java.lang.Throwable cause)
- Constructs an ModelIntegrityException with a message and original exception.
- Parameters:
message
- String holding a descriptive message about the exception.originalException
- The original exception that caused the problem.
ModelIntegrityException
public ModelIntegrityException(java.lang.String msg,
java.lang.Object[] tokenValues,
java.lang.Throwable throwable)
- Constructs a checked exception with a msg identifier, an array of message
parameters, and the original exception or error.
- Parameters:
msg
- string identifier of error message.tokenValues
- Object[] containing string values for replaceable tokens
in the message bundle string.throwable
- originating exception or error.