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