Class ModelParserException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ModelParserException
    extends java.lang.Exception
    An Exception that may be thrown by ModelMerger methods.
    Author:
    Alex Kalderimis, from Thomas Riley
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ModelParserException()
      Constructs a ModelParserException
      ModelParserException​(java.lang.String msg)
      Constructs a ModelParserException with the specified detail message.
      ModelParserException​(java.lang.String msg, java.lang.Throwable t)
      Constructs a ModelParserException with the specified detail message and nested throwable.
      ModelParserException​(java.lang.Throwable t)
      Constructs a ModelParserException with the specified nested throwable.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ModelParserException

        public ModelParserException()
        Constructs a ModelParserException
      • ModelParserException

        public ModelParserException​(java.lang.String msg)
        Constructs a ModelParserException with the specified detail message.
        Parameters:
        msg - the detail message
      • ModelParserException

        public ModelParserException​(java.lang.Throwable t)
        Constructs a ModelParserException with the specified nested throwable.
        Parameters:
        t - the nested throwable
      • ModelParserException

        public ModelParserException​(java.lang.String msg,
                                    java.lang.Throwable t)
        Constructs a ModelParserException with the specified detail message and nested throwable.
        Parameters:
        msg - the detail message
        t - the nested throwable