1 7 8 package java.sql; 9 10 25 public class SQLFeatureNotSupportedException extends SQLNonTransientException { 26 27 38 public SQLFeatureNotSupportedException() { 39 super(); 40 } 41 42 55 public SQLFeatureNotSupportedException(String reason) { 56 super(reason); 57 } 58 59 72 public SQLFeatureNotSupportedException(String reason, String SQLState) { 73 super(reason,SQLState); 74 } 75 76 90 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) { 91 super(reason,SQLState,vendorCode); 92 } 93 94 107 public SQLFeatureNotSupportedException(Throwable cause) { 108 super(cause); 109 } 110 111 123 public SQLFeatureNotSupportedException(String reason, Throwable cause) { 124 super(reason,cause); 125 } 126 127 139 public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) { 140 super(reason,SQLState,cause); 141 } 142 143 156 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) { 157 super(reason,SQLState,vendorCode,cause); 158 } 159 160 private static final long serialVersionUID = -1026510870282316051L; 161 } 162 | Popular Tags |