Class InvalidParameterException

    • Constructor Summary

      Constructors 
      Constructor Description
      InvalidParameterException()
      Simple constructor.
      InvalidParameterException​(int lineNumber, java.lang.String line, java.lang.String tline, java.lang.String msg)
      Constructor to create exception with a message.
      InvalidParameterException​(java.lang.String msg)
      Constructor to create exception with a message.
      InvalidParameterException​(java.lang.String msg, java.lang.Throwable cause)
      Constructor to create exception to wrap another exception and pass a message.
      InvalidParameterException​(java.lang.Throwable cause)
      Constructor to create exception to wrap another exception.
    • 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

      • InvalidParameterException

        public InvalidParameterException()
        Simple constructor.
      • InvalidParameterException

        public InvalidParameterException​(java.lang.String msg)
        Constructor to create exception with a message.
        Parameters:
        msg - a message to associate with the exception
      • InvalidParameterException

        public InvalidParameterException​(int lineNumber,
                                         java.lang.String line,
                                         java.lang.String tline,
                                         java.lang.String msg)
        Constructor to create exception with a message.
        Parameters:
        lineNumber - the line number
        line - the character line
        tline - the trimmed character line
        msg - a message to associate with the exception
      • InvalidParameterException

        public InvalidParameterException​(java.lang.Throwable cause)
        Constructor to create exception to wrap another exception.
        Parameters:
        cause - the real cause of the exception
      • InvalidParameterException

        public InvalidParameterException​(java.lang.String msg,
                                         java.lang.Throwable cause)
        Constructor to create exception to wrap another exception and pass a message.
        Parameters:
        msg - the message
        cause - the real cause of the exception