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