1 23 package javax.persistence; 24 25 35 public class EntityExistsException extends PersistenceException { 36 37 41 public EntityExistsException() { 42 super(); 43 } 44 45 50 public EntityExistsException(String message) { 51 super(message); 52 } 53 54 60 public EntityExistsException(String message, Throwable cause) { 61 super(message, cause); 62 } 63 64 69 public EntityExistsException(Throwable cause) { 70 super(cause); 71 } 72 }; 73 74 | Popular Tags |