1 7 8 package java.sql; 9 10 21 public class SQLRecoverableException extends java.sql.SQLException { 22 23 34 public SQLRecoverableException() { 35 super(); 36 } 37 38 51 public SQLRecoverableException(String reason) { 52 super(reason); 53 } 54 55 68 public SQLRecoverableException(String reason, String SQLState) { 69 super(reason, SQLState); 70 } 71 72 86 public SQLRecoverableException(String reason, String SQLState, int vendorCode) { 87 super(reason, SQLState, vendorCode); 88 } 89 90 103 public SQLRecoverableException(Throwable cause) { 104 super(cause); 105 } 106 107 119 public SQLRecoverableException(String reason, Throwable cause) { 120 super(reason, cause); 121 } 122 123 135 public SQLRecoverableException(String reason, String SQLState, Throwable cause) { 136 super(reason, SQLState, cause); 137 } 138 139 152 public SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) { 153 super(reason, SQLState, vendorCode, cause); 154 } 155 156 private static final long serialVersionUID = -4144386502923131579L; 157 } 158 | Popular Tags |