Class ValueFormatException

  • All Implemented Interfaces:
    Serializable

    public class ValueFormatException
    extends Exception
    Exception thrown if a String is not a valid representation of the required Value subclass.
    See Also:
    Serialized Form
    • Constructor Detail

      • ValueFormatException

        public ValueFormatException()
        Creates a new instance of ValueFormatException without detail message.
      • ValueFormatException

        public ValueFormatException​(String msg)
        Constructs an instance of ValueFormatException with the specified detail message.
        Parameters:
        msg - the detail message.
      • ValueFormatException

        public ValueFormatException​(Throwable cause)
        Constructs an instance of ValueFormatException with the specified cause.
        Parameters:
        cause - the cause.
      • ValueFormatException

        public ValueFormatException​(String msg,
                                    Throwable cause)
        Constructs an instance of ValueFormatException with the specified detail message and cause.
        Parameters:
        msg - the detail message.
        cause - the cause.