public class DuplicateException
extends java.lang.Exception
| Constructor and Description |
|---|
DuplicateException()
Builds a
DuplicateException with no message string or cause. |
DuplicateException(java.lang.String message)
Builds a
DuplicateException with a message. |
DuplicateException(java.lang.String message,
java.lang.Throwable cause)
Builds a
DuplicateException with a message and a cause. |
DuplicateException(java.lang.Throwable cause)
Builds a
DuplicateException with a cause. |
public DuplicateException()
DuplicateException with no message string or cause.public DuplicateException(java.lang.String message)
DuplicateException with a message.message - the exception details.public DuplicateException(java.lang.Throwable cause)
DuplicateException with a cause.cause - the Throwable which caused this exception.public DuplicateException(java.lang.String message,
java.lang.Throwable cause)
DuplicateException with a message and a cause.message - the exception details.cause - the Throwable which caused this exception.