/libcore/ojluni/src/main/java/java/sql/ |
D | SQLException.java | 69 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 …]
|
D | SQLWarning.java | 60 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()
|
D | SQLTransactionRollbackException.java | 102 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()
|
D | SQLDataException.java | 105 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()
|
D | SQLIntegrityConstraintViolationException.java | 103 … 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()
|
D | SQLSyntaxErrorException.java | 102 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()
|
D | SQLInvalidAuthorizationSpecException.java | 103 … 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()
|
D | SQLTimeoutException.java | 100 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()
|
D | SQLFeatureNotSupportedException.java | 108 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()
|
D | SQLTransientException.java | 101 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()
|
D | SQLRecoverableException.java | 104 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()
|
D | SQLTransientConnectionException.java | 103 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()
|
D | SQLNonTransientConnectionException.java | 104 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()
|
D | SQLNonTransientException.java | 103 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()
|
D | SQLClientInfoException.java | 264 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()
|
D | BatchUpdateException.java | 80 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()
|