public class DomainException extends FieldException
| Constructor and Description |
|---|
DomainException()
Constructs a
DomainException with no specified detail message. |
DomainException(java.lang.String message)
Constructs a
DomainException with the specified detail message. |
DomainException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
DomainException with the specified detail message
and cause. |
DomainException(java.lang.Throwable cause)
Constructs a
DomainException with the specified cause. |
public DomainException()
DomainException with no specified detail message.public DomainException(java.lang.String message)
DomainException with the specified detail message.message - Detail message.public DomainException(java.lang.String message,
java.lang.Throwable cause)
DomainException with the specified detail message
and cause.message - Detail message.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.public DomainException(java.lang.Throwable cause)
DomainException with the specified cause.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.