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

/libcore/luni/src/main/java/java/sql/
H A DSQLDataException.java71 * @param vendorCode
74 public SQLDataException(String reason, String sqlState, int vendorCode) { argument
75 super(reason, sqlState, vendorCode);
134 * @param vendorCode
140 public SQLDataException(String reason, String sqlState, int vendorCode, argument
142 super(reason, sqlState, vendorCode, cause);
H A DSQLFeatureNotSupportedException.java71 * @param vendorCode
75 int vendorCode) {
76 super(reason, sqlState, vendorCode);
137 * @param vendorCode
144 int vendorCode, Throwable cause) {
145 super(reason, sqlState, vendorCode, cause);
74 SQLFeatureNotSupportedException(String reason, String sqlState, int vendorCode) argument
143 SQLFeatureNotSupportedException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLIntegrityConstraintViolationException.java75 * @param vendorCode
79 String sqlState, int vendorCode) {
80 super(reason, sqlState, vendorCode);
143 * @param vendorCode
150 String sqlState, int vendorCode, Throwable cause) {
151 super(reason, sqlState, vendorCode, cause);
78 SQLIntegrityConstraintViolationException(String reason, String sqlState, int vendorCode) argument
149 SQLIntegrityConstraintViolationException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLInvalidAuthorizationSpecException.java74 * @param vendorCode
78 int vendorCode) {
79 super(reason, sqlState, vendorCode);
141 * @param vendorCode
148 int vendorCode, Throwable cause) {
149 super(reason, sqlState, vendorCode, cause);
77 SQLInvalidAuthorizationSpecException(String reason, String sqlState, int vendorCode) argument
147 SQLInvalidAuthorizationSpecException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLNonTransientConnectionException.java74 * @param vendorCode
78 int vendorCode) {
79 super(reason, sqlState, vendorCode);
141 * @param vendorCode
148 int vendorCode, Throwable cause) {
149 super(reason, sqlState, vendorCode, cause);
77 SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode) argument
147 SQLNonTransientConnectionException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLNonTransientException.java66 * @param vendorCode
70 int vendorCode) {
71 super(reason, sqlState, vendorCode);
131 * @param vendorCode
138 int vendorCode, Throwable cause) {
139 super(reason, sqlState, vendorCode, cause);
69 SQLNonTransientException(String reason, String sqlState, int vendorCode) argument
137 SQLNonTransientException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLRecoverableException.java66 * @param vendorCode
70 int vendorCode) {
71 super(reason, sqlState, vendorCode);
131 * @param vendorCode
138 int vendorCode, Throwable cause) {
139 super(reason, sqlState, vendorCode, cause);
69 SQLRecoverableException(String reason, String sqlState, int vendorCode) argument
137 SQLRecoverableException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLSyntaxErrorException.java66 * @param vendorCode
70 int vendorCode) {
71 super(reason, sqlState, vendorCode);
131 * @param vendorCode
138 int vendorCode, Throwable cause) {
139 super(reason, sqlState, vendorCode, cause);
69 SQLSyntaxErrorException(String reason, String sqlState, int vendorCode) argument
137 SQLSyntaxErrorException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLTimeoutException.java66 * @param vendorCode
69 public SQLTimeoutException(String reason, String sqlState, int vendorCode) { argument
70 super(reason, sqlState, vendorCode);
129 * @param vendorCode
135 public SQLTimeoutException(String reason, String sqlState, int vendorCode, argument
137 super(reason, sqlState, vendorCode, cause);
H A DSQLTransactionRollbackException.java67 * @param vendorCode
71 int vendorCode) {
72 super(reason, sqlState, vendorCode);
133 * @param vendorCode
140 int vendorCode, Throwable cause) {
141 super(reason, sqlState, vendorCode, cause);
70 SQLTransactionRollbackException(String reason, String sqlState, int vendorCode) argument
139 SQLTransactionRollbackException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLTransientConnectionException.java67 * @param vendorCode
71 int vendorCode) {
72 super(reason, sqlState, vendorCode);
133 * @param vendorCode
140 int vendorCode, Throwable cause) {
141 super(reason, sqlState, vendorCode, cause);
70 SQLTransientConnectionException(String reason, String sqlState, int vendorCode) argument
139 SQLTransientConnectionException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DSQLTransientException.java66 * @param vendorCode
69 public SQLTransientException(String reason, String sqlState, int vendorCode) { argument
70 super(reason, sqlState, vendorCode);
129 * @param vendorCode
136 int vendorCode, Throwable cause) {
137 super(reason, sqlState, vendorCode, cause);
135 SQLTransientException(String reason, String sqlState, int vendorCode, Throwable cause) argument
H A DBatchUpdateException.java72 * initialized to null while vendorCode is zero.
86 * while vendorCode is zero.
101 * int array parameter. SQLState is initialized to null while vendorCode is
117 * int array parameter. VendorCode is set to the given vendorCode. SQLState
118 * is initialized to null while vendorCode is zero.
124 public BatchUpdateException(String reason, String SQLState, int vendorCode, argument
126 super(reason, SQLState, vendorCode, cause);
192 * @param vendorCode
199 public BatchUpdateException(String reason, String SQLState, int vendorCode, argument
201 super(reason, SQLState, vendorCode);
[all...]
H A DSQLClientInfoException.java114 * to the vendorCode and the Map<String,ClientInfoStatus> object is set to
121 * @param vendorCode
129 int vendorCode, Map<String, ClientInfoStatus> failedProperties) {
130 super(reason, sqlState, vendorCode);
137 * to the vendorCode the cause Throwable object is set to the given cause
145 * @param vendorCode
155 int vendorCode, Map<String, ClientInfoStatus> failedProperties,
157 super(reason, sqlState, vendorCode, cause);
183 * to the vendorCode, and the Map<String,ClientInfoStatus> object is set to
128 SQLClientInfoException(String reason, String sqlState, int vendorCode, Map<String, ClientInfoStatus> failedProperties) argument
154 SQLClientInfoException(String reason, String sqlState, int vendorCode, Map<String, ClientInfoStatus> failedProperties, Throwable cause) argument
H A DSQLException.java46 private int vendorCode = 0; field in class:SQLException
100 vendorCode = theErrorCode;
174 vendorCode = theErrorCode;
184 return vendorCode;
H A DSQLWarning.java116 * vendorCode, cause is set to the given cause
120 public SQLWarning(String reason, String SQLState, int vendorCode, argument
122 super(reason, SQLState, vendorCode, cause);

Completed in 343 milliseconds