public class ValueException extends ServiceException
Constructor and Description |
---|
ValueException()
Constructs a new exception with null as its detail message.
|
ValueException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
ValueException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.
|
ValueException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message
of (
cause==null ? null : cause.toString() ) (which typically
contains the class and detail message of cause). |
public ValueException()
public ValueException(java.lang.String message)
message
- detail message describing the exception.public ValueException(java.lang.String message, java.lang.Throwable cause)
message
- detail message describing the exception.cause
- original throwable that caused this exception.public ValueException(java.lang.Throwable cause)
cause==null ? null : cause.toString()
) (which typically
contains the class and detail message of cause).cause
- original throwable that caused this exception.