1 23 package javax.persistence; 24 25 26 34 public class PersistenceException extends RuntimeException { 35 36 40 public PersistenceException() { 41 super(); 42 } 43 44 49 public PersistenceException(String message) { 50 super(message); 51 } 52 53 59 public PersistenceException(String message, Throwable cause) { 60 super(message, cause); 61 } 62 63 68 public PersistenceException(Throwable cause) { 69 super(cause); 70 } 71 }; 72 73 | Popular Tags |