Class ModelInitializationException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConstraintInitializationException

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

    • ModelInitializationException

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

      public ModelInitializationException(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
    • ModelInitializationException

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