Constructors Summary |
---|
public EntityExistsException()Constructs a new EntityExistsException exception
with null as its detail message.
super();
|
public EntityExistsException(String message)Constructs a new EntityExistsException exception
with the specified detail message.
super(message);
|
public EntityExistsException(String message, Throwable cause)Constructs a new EntityExistsException exception
with the specified detail message and cause.
super(message, cause);
|
public EntityExistsException(Throwable cause)Constructs a new EntityExistsException exception
with the specified cause.
super(cause);
|