1 7 8 package java.sql; 9 10 16 public class SQLIntegrityConstraintViolationException extends SQLNonTransientException { 17 18 29 public SQLIntegrityConstraintViolationException() { 30 super(); 31 } 32 33 46 public SQLIntegrityConstraintViolationException(String reason) { 47 super(reason); 48 } 49 50 63 public SQLIntegrityConstraintViolationException(String reason, String SQLState) { 64 super(reason,SQLState); 65 } 66 67 81 public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) { 82 super(reason,SQLState,vendorCode); 83 } 84 85 98 public SQLIntegrityConstraintViolationException(Throwable cause) { 99 super(cause); 100 } 101 102 114 public SQLIntegrityConstraintViolationException(String reason, Throwable cause) { 115 super(reason,cause); 116 } 117 118 130 public SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) { 131 super(reason,SQLState, cause); 132 } 133 134 147 public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause) { 148 super(reason,SQLState,vendorCode,cause); 149 } 150 151 private static final long serialVersionUID = 8033405298774849169L; 152 } 153 | Popular Tags |