Constructors Summary |
---|
public PersistenceException()Constructs a new persistence exception that appears to
have happened for new good readon whatsoever.
super();
|
public PersistenceException(String msg)Constructs a new persistence exception with the specified
explanation.
super(msg);
|
public PersistenceException(Exception cse)Constructs a new persistence exception that results from the
specified data store exception.
super(cse.getMessage());
cause = cse;
|