Class ValueFormatException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.praxislive.core.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:
  • Constructor Details

    • 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.