Class IncompatibleParameterValueTypeException

  • All Implemented Interfaces:
    java.io.Serializable

    public class IncompatibleParameterValueTypeException
    extends InvalidParameterException
    The Class IncompatibleParameterValueTypeException.
    See Also:
    Serialized Form
    • Constructor Detail

      • IncompatibleParameterValueTypeException

        public IncompatibleParameterValueTypeException()
        Simple constructor.
      • IncompatibleParameterValueTypeException

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

        public IncompatibleParameterValueTypeException​(ParameterValue parameterValue,
                                                       ParameterValueType expectedParameterValueType)
      • IncompatibleParameterValueTypeException

        public IncompatibleParameterValueTypeException​(int lineNumber,
                                                       java.lang.String line,
                                                       java.lang.String trim,
                                                       java.lang.String msg)
      • IncompatibleParameterValueTypeException

        public IncompatibleParameterValueTypeException​(int lineNumber,
                                                       java.lang.String line,
                                                       java.lang.String trim,
                                                       ParameterValue parameterValue,
                                                       ParameterValueType expectedParameterValueType)
      • IncompatibleParameterValueTypeException

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

        public IncompatibleParameterValueTypeException​(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
    • Method Detail

      • makeMessage

        protected static java.lang.String makeMessage​(int lineNumber,
                                                      java.lang.String line,
                                                      java.lang.String trim,
                                                      ParameterValue parameterValue,
                                                      ParameterValueType expectedParameterValueType)