1 7 8 package java.sql; 9 10 16 public class SQLSyntaxErrorException extends SQLNonTransientException { 17 18 29 public SQLSyntaxErrorException() { 30 super(); 31 } 32 33 46 public SQLSyntaxErrorException(String reason) { 47 super(reason); 48 } 49 50 63 public SQLSyntaxErrorException(String reason, String SQLState) { 64 super(reason, SQLState); 65 } 66 67 81 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) { 82 super(reason, SQLState, vendorCode); 83 } 84 85 98 public SQLSyntaxErrorException(Throwable cause) { 99 super(cause); 100 } 101 102 114 public SQLSyntaxErrorException(String reason, Throwable cause) { 115 super(reason, cause); 116 } 117 118 130 public SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) { 131 super(reason, SQLState, cause); 132 } 133 134 147 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) { 148 super(reason, SQLState, vendorCode, cause); 149 } 150 151 private static final long serialVersionUID = -1843832610477496053L; 152 } 153 | Popular Tags |