- 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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValueFormatException()
Creates a new instance ofValueFormatException
without detail message.ValueFormatException(String msg)
Constructs an instance ofValueFormatException
with the specified detail message.ValueFormatException(String msg, Throwable cause)
Constructs an instance ofValueFormatException
with the specified detail message and cause.ValueFormatException(Throwable cause)
Constructs an instance ofValueFormatException
with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ValueFormatException
public ValueFormatException()
Creates a new instance ofValueFormatException
without detail message.
-
ValueFormatException
public ValueFormatException(String msg)
Constructs an instance ofValueFormatException
with the specified detail message.- Parameters:
msg
- the detail message.
-
ValueFormatException
public ValueFormatException(Throwable cause)
Constructs an instance ofValueFormatException
with the specified cause.- Parameters:
cause
- the cause.
-
-