Home
last modified time | relevance | path

Searched refs:vendorCode (Results 1 – 16 of 16) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
DSQLException.java69 public SQLException(String reason, String SQLState, int vendorCode) { in SQLException() argument
72 this.vendorCode = vendorCode; in SQLException()
76 ") vendor code(" + vendorCode + ")"); in SQLException()
98 this.vendorCode = 0; in SQLException()
121 this.vendorCode = 0; in SQLException()
142 this.vendorCode = 0; in SQLException()
213 this.vendorCode = 0; in SQLException()
235 public SQLException(String reason, String sqlState, int vendorCode, Throwable cause) { in SQLException() argument
239 this.vendorCode = vendorCode; in SQLException()
243 ") vendor code(" + vendorCode + ")"); in SQLException()
[all …]
DSQLWarning.java60 public SQLWarning(String reason, String SQLState, int vendorCode) { in SQLWarning() argument
61 super(reason, SQLState, vendorCode); in SQLWarning()
64 ") vendor code(" + vendorCode + ")"); in SQLWarning()
181 public SQLWarning(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLWarning() argument
182 super(reason,SQLState,vendorCode,cause); in SQLWarning()
185 ") vendor code(" + vendorCode + ")"); in SQLWarning()
DSQLTransactionRollbackException.java102 public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode) { in SQLTransactionRollbackException() argument
103 super(reason, SQLState, vendorCode); in SQLTransactionRollbackException()
168 …public SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransactionRollbackException() argument
169 super(reason, SQLState, vendorCode, cause); in SQLTransactionRollbackException()
DSQLDataException.java105 public SQLDataException(String reason, String SQLState, int vendorCode) { in SQLDataException() argument
106 super(reason, SQLState, vendorCode); in SQLDataException()
168 public SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLDataException() argument
169 super(reason, SQLState, vendorCode, cause); in SQLDataException()
DSQLIntegrityConstraintViolationException.java103 … public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) { in SQLIntegrityConstraintViolationException() argument
104 super(reason,SQLState,vendorCode); in SQLIntegrityConstraintViolationException()
169 …public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Th… in SQLIntegrityConstraintViolationException() argument
170 super(reason,SQLState,vendorCode,cause); in SQLIntegrityConstraintViolationException()
DSQLSyntaxErrorException.java102 public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) { in SQLSyntaxErrorException() argument
103 super(reason, SQLState, vendorCode); in SQLSyntaxErrorException()
168 … public SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLSyntaxErrorException() argument
169 super(reason, SQLState, vendorCode, cause); in SQLSyntaxErrorException()
DSQLInvalidAuthorizationSpecException.java103 … public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode) { in SQLInvalidAuthorizationSpecException() argument
104 super(reason,SQLState,vendorCode); in SQLInvalidAuthorizationSpecException()
169 …public SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwa… in SQLInvalidAuthorizationSpecException() argument
170 super(reason,SQLState,vendorCode,cause); in SQLInvalidAuthorizationSpecException()
DSQLTimeoutException.java100 public SQLTimeoutException(String reason, String SQLState, int vendorCode) { in SQLTimeoutException() argument
101 super(reason, SQLState, vendorCode); in SQLTimeoutException()
166 public SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTimeoutException() argument
167 super(reason, SQLState, vendorCode, cause); in SQLTimeoutException()
DSQLFeatureNotSupportedException.java108 public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) { in SQLFeatureNotSupportedException() argument
109 super(reason,SQLState,vendorCode); in SQLFeatureNotSupportedException()
174 …public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable c… in SQLFeatureNotSupportedException() argument
175 super(reason,SQLState,vendorCode,cause); in SQLFeatureNotSupportedException()
DSQLTransientException.java101 public SQLTransientException(String reason, String SQLState, int vendorCode) { in SQLTransientException() argument
102 super(reason,SQLState,vendorCode); in SQLTransientException()
167 public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLTransientException() argument
168 super(reason,SQLState,vendorCode,cause); in SQLTransientException()
DSQLRecoverableException.java104 public SQLRecoverableException(String reason, String SQLState, int vendorCode) { in SQLRecoverableException() argument
105 super(reason, SQLState, vendorCode); in SQLRecoverableException()
170 … public SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLRecoverableException() argument
171 super(reason, SQLState, vendorCode, cause); in SQLRecoverableException()
DSQLTransientConnectionException.java103 public SQLTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLTransientConnectionException() argument
104 super(reason,SQLState,vendorCode); in SQLTransientConnectionException()
169 …public SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable c… in SQLTransientConnectionException() argument
170 super(reason,SQLState,vendorCode,cause); in SQLTransientConnectionException()
DSQLNonTransientConnectionException.java104 public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode) { in SQLNonTransientConnectionException() argument
105 super(reason,SQLState,vendorCode); in SQLNonTransientConnectionException()
170 …public SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwabl… in SQLNonTransientConnectionException() argument
171 super(reason,SQLState,vendorCode,cause); in SQLNonTransientConnectionException()
DSQLNonTransientException.java103 public SQLNonTransientException(String reason, String SQLState, int vendorCode) { in SQLNonTransientException() argument
104 super(reason,SQLState,vendorCode); in SQLNonTransientException()
170 … public SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) { in SQLNonTransientException() argument
171 super(reason,SQLState,vendorCode,cause); in SQLNonTransientException()
DSQLClientInfoException.java264 int vendorCode, in SQLClientInfoException() argument
267 super(reason, SQLState, vendorCode); in SQLClientInfoException()
294 int vendorCode, in SQLClientInfoException() argument
298 super(reason, SQLState, vendorCode); in SQLClientInfoException()
DBatchUpdateException.java80 public BatchUpdateException( String reason, String SQLState, int vendorCode, in BatchUpdateException() argument
82 super(reason, SQLState, vendorCode); in BatchUpdateException()
292 public BatchUpdateException(String reason, String SQLState, int vendorCode, in BatchUpdateException() argument
294 super(reason, SQLState, vendorCode, cause); in BatchUpdateException()