1 7 8 package java.sql; 9 10 18 public class SQLTransientException extends java.sql.SQLException { 19 20 31 public SQLTransientException() { 32 super(); 33 } 34 35 48 public SQLTransientException(String reason) { 49 super(reason); 50 } 51 52 65 public SQLTransientException(String reason, String SQLState) { 66 super(reason,SQLState); 67 } 68 69 83 public SQLTransientException(String reason, String SQLState, int vendorCode) { 84 super(reason,SQLState,vendorCode); 85 } 86 87 100 public SQLTransientException(Throwable cause) { 101 super(cause); 102 } 103 104 116 public SQLTransientException(String reason, Throwable cause) { 117 super(reason,cause); 118 } 119 120 132 public SQLTransientException(String reason, String SQLState, Throwable cause) { 133 super(reason,SQLState,cause); 134 } 135 136 149 public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { 150 super(reason,SQLState,vendorCode,cause); 151 } 152 153 private static final long serialVersionUID = -9042733978262274539L; 154 } 155 | Popular Tags |