com.ibm.itim.dataservices.model
Class ModelCreationException
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.ModelCreationException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- DuplicateEntryException
- public class ModelCreationException
- extends ModelException
ModelCreationException is an exception class used for errors that
arise when attempting to create an entry in the data store for data
model specific reasons. Most often causes are schema violations.
- 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 |
ModelCreationException(java.lang.String message)
Constructs an ModelCreationException with a message. |
ModelCreationException(java.lang.String msg,
java.lang.Throwable cause)
Constructs an ModelCreationException 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 |
ModelCreationException
public ModelCreationException(java.lang.String message)
- Constructs an ModelCreationException with a message.
- Parameters:
message
- String holding a descriptive message about the exception.
ModelCreationException
public ModelCreationException(java.lang.String msg,
java.lang.Throwable cause)
- Constructs an ModelCreationException with a message and original exception.
- Parameters:
message
- String holding a descriptive message about the exception.originalException
- The original exception that caused the problem.