1 7 8 package java.sql; 9 10 17 public class SQLDataException extends SQLNonTransientException { 18 19 31 public SQLDataException() { 32 super(); 33 } 34 35 49 public SQLDataException(String reason) { 50 super(reason); 51 } 52 53 66 public SQLDataException(String reason, String SQLState) { 67 super(reason, SQLState); 68 } 69 70 84 public SQLDataException(String reason, String SQLState, int vendorCode) { 85 super(reason, SQLState, vendorCode); 86 } 87 88 101 public SQLDataException(Throwable cause) { 102 super(cause); 103 } 104 105 116 public SQLDataException(String reason, Throwable cause) { 117 super(reason, cause); 118 } 119 120 131 public SQLDataException(String reason, String SQLState, Throwable cause) { 132 super(reason, SQLState, cause); 133 } 134 135 147 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) { 148 super(reason, SQLState, vendorCode, cause); 149 } 150 151 private static final long serialVersionUID = -6889123282670549800L; 152 } 153 | Popular Tags |