Class ConstraintInitializationException

All Implemented Interfaces:
Serializable

public class ConstraintInitializationException extends ModelInitializationException
Identifies that an unexpected error occurred while initializing or using constraints associated with a Metaschema-based model.
See Also:
  • Constructor Details

    • ConstraintInitializationException

      public ConstraintInitializationException(String message)
      Constructs a new exception with the provided message and no cause.
      Parameters:
      message - the exception message
    • ConstraintInitializationException

      public ConstraintInitializationException(Throwable cause)
      Constructs a new exception with the provided cause.

      The message used will be the message provided by the underlying cause.

      Parameters:
      cause - the original exception cause
    • ConstraintInitializationException

      public ConstraintInitializationException(String message, Throwable cause)
      Constructs a new exception with the provided message and cause.
      Parameters:
      message - the exception message
      cause - the original exception cause