com.ibm.itim.dataservices.model

Class 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.
    See Also:
    Serialized Form
    • Constructor Detail

      • 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:
        msg - String holding a descriptive message about the exception.
        cause - The original exception that caused the problem.
      • ModelCreationException

        public ModelCreationException(java.lang.String msg,
                                      java.lang.Object[] tokenValues)
        Constructs a checked exception with a msg identifier and an array of message parameters.
        Parameters:
        msg - string identifier of error message.
        tokenValues - Object[] containing string values for replaceable tokens in the message bundle string.
      • ModelCreationException

        public ModelCreationException(java.lang.String msg,
                                      java.lang.Object[] tokenValues,
                                      java.lang.Throwable cause)
        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.
        cause - originating exception or error.