The subclass of SQLException thrown when the timeout specified by Statement.setQueryTimeout, DriverManager.setLoginTimeout, DataSource.setLoginTimeout,XADataSource.setLoginTimeout has expired. This exception does not correspond to a standard SQLState.
The subclass of SQLException thrown when the timeout specified by Statement.setQueryTimeout, DriverManager.setLoginTimeout, DataSource.setLoginTimeout,XADataSource.setLoginTimeout has expired. This exception does not correspond to a standard SQLState.
(->sql-timeout-exception)
(->sql-timeout-exception reason)
(->sql-timeout-exception reason sql-state)
(->sql-timeout-exception reason sql-state vendor-code)
(->sql-timeout-exception reason sql-state vendor-code cause)
Constructor.
Constructs a SQLTimeoutException object with a given reason, SQLState, vendorCode and cause.
reason - a description of the exception - java.lang.String
sql-state - an XOPEN or SQL:2003 code identifying the exception - java.lang.String
vendor-code - a database vendor-specific exception code - int
cause - the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. - java.lang.Throwable
Constructor. Constructs a SQLTimeoutException object with a given reason, SQLState, vendorCode and cause. reason - a description of the exception - `java.lang.String` sql-state - an XOPEN or SQL:2003 code identifying the exception - `java.lang.String` vendor-code - a database vendor-specific exception code - `int` cause - the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. - `java.lang.Throwable`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close