- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- life.expert.value.numeric.utils.ValueException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AmountParseException,UnknownUnitException
public class ValueException extends java.lang.RuntimeExceptionThe type Value exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValueException(java.lang.String message)Creates an instance.ValueException(java.lang.String message, java.lang.Throwable cause)Creates an instance with the specified detail message and cause.
-
-
-
Constructor Detail
-
ValueException
public ValueException(java.lang.String message)
Creates an instance.- Parameters:
message- the message
-
ValueException
public ValueException(java.lang.String message, java.lang.Throwable cause)Creates an instance with the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-