예제 #1
0
 /**
  * Constructs a new PersistenceException that occured because another exception was encountered
  * during a persistence operation such as a save or restore.
  *
  * @param e the exception causing this exception to be created
  */
 public PersistenceException(Exception e) {
   this("A persistence exception occurred: " + e.getMessage(), e);
 }