1 7 8 package java.sql; 9 10 19 public class SQLTransientConnectionException extends java.sql.SQLTransientException { 20 21 32 public SQLTransientConnectionException() { 33 super(); 34 } 35 36 49 public SQLTransientConnectionException(String reason) { 50 super(reason); 51 } 52 53 66 public SQLTransientConnectionException(String reason, String SQLState) { 67 super(reason,SQLState); 68 } 69 70 84 public SQLTransientConnectionException(String reason, String SQLState, int vendorCode) { 85 super(reason,SQLState,vendorCode); 86 } 87 88 101 public SQLTransientConnectionException(Throwable cause) { 102 super(cause); 103 } 104 105 117 public SQLTransientConnectionException(String reason, Throwable cause) { 118 super(reason,cause); 119 } 120 121 133 public SQLTransientConnectionException(String reason, String SQLState, Throwable cause) { 134 super(reason,SQLState,cause); 135 } 136 137 150 public SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) { 151 super(reason,SQLState,vendorCode,cause); 152 } 153 154 private static final long serialVersionUID = -2520155553543391200L; 155 } 156 | Popular Tags |