java.lang.Object
java.lang.Throwable
java.lang.Exception
org.praxislive.core.ValueFormatException
- All Implemented Interfaces:
Serializable
Exception thrown if a String is not a valid representation of the required
Value subclass.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofValueFormatExceptionwithout detail message.Constructs an instance ofValueFormatExceptionwith the specified detail message.ValueFormatException(String msg, Throwable cause) Constructs an instance ofValueFormatExceptionwith the specified detail message and cause.ValueFormatException(Throwable cause) Constructs an instance ofValueFormatExceptionwith 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 Details
-
ValueFormatException
public ValueFormatException()Creates a new instance ofValueFormatExceptionwithout detail message. -
ValueFormatException
Constructs an instance ofValueFormatExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
ValueFormatException
Constructs an instance ofValueFormatExceptionwith the specified cause.- Parameters:
cause- the cause.
-
ValueFormatException
Constructs an instance ofValueFormatExceptionwith the specified detail message and cause.- Parameters:
msg- the detail message.cause- the cause.
-