public class SQLTimeoutException
extends SQLTransientException
java.lang.Object | |||||
↳ | java.lang.Throwable | ||||
↳ | java.lang.Exception | ||||
↳ | java.sql.SQLException | ||||
↳ | java.sql.SQLTransientException | ||||
↳ | java.sql.SQLTimeoutException |
当 Statement
指定的超时已过期时引发的子类 SQLException
。
此异常不对应于标准的SQLState。
Public constructors |
|
---|---|
SQLTimeoutException() 构造一个 |
|
SQLTimeoutException(String reason) 用给定的 |
|
SQLTimeoutException(String reason, String SQLState) 使用给定的 |
|
SQLTimeoutException(String reason, String SQLState, int vendorCode) 构造一个 |
|
SQLTimeoutException(Throwable cause) 用给定的 |
|
SQLTimeoutException(String reason, Throwable cause) 用给定的 |
|
SQLTimeoutException(String reason, String SQLState, Throwable cause) 构造一个 |
|
SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) 构造一个 |
Inherited methods |
|
---|---|
From class java.sql.SQLException
|
|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
|
From interface java.lang.Iterable
|
SQLTimeoutException ()
构造一个SQLTimeoutException
对象。 的reason
, SQLState
被初始化为null
和供应商代码被初始化为0。 cause
没有初始化,随后可以通过向一个呼叫进行初始化initCause(java.lang.Throwable)
方法。
SQLTimeoutException (String reason)
用给定的reason
构造一个SQLTimeoutException
对象。 SQLState
初始化为null
,并将供应商代码初始化为0. cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。
Parameters | |
---|---|
reason |
String : a description of the exception |
SQLTimeoutException (String reason, String SQLState)
使用给定的reason
和SQLState
构造一个SQLTimeoutException
对象。 cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。 供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the exception |
SQLState |
String : an XOPEN or SQL:2003 code identifying the exception |
SQLTimeoutException (String reason, String SQLState, int vendorCode)
构造一个SQLTimeoutException
与给定对象reason
, SQLState
和vendorCode
。 cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。
Parameters | |
---|---|
reason |
String : a description of the exception |
SQLState |
String : an XOPEN or SQL:2003 code identifying the exception |
vendorCode |
int : a database vendor specific exception code |
SQLTimeoutException (Throwable cause)
使用给定的cause
构造一个SQLTimeoutException
对象。 SQLState
初始化为null
,供应商代码初始化为0. reason
初始化为null
如果为cause==null
或cause.toString()
如果为null
则初始化为cause!=null
。
Parameters | |
---|---|
cause |
Throwable : 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. |
SQLTimeoutException (String reason, Throwable cause)
用给定的reason
和cause
构造一个SQLTimeoutException
对象。 SQLState
初始化为null
,供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the exception. |
cause |
Throwable : 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. |
SQLTimeoutException (String reason, String SQLState, Throwable cause)
构造一个SQLTimeoutException
与给定对象reason
, SQLState
和cause
。 供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the exception. |
SQLState |
String : an XOPEN or SQL:2003 code identifying the exception |
cause |
Throwable : 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. |
SQLTimeoutException (String reason, String SQLState, int vendorCode, Throwable cause)
构造一个 SQLTimeoutException
与给定对象 reason
, SQLState
, vendorCode
和 cause
。
Parameters | |
---|---|
reason |
String : a description of the exception |
SQLState |
String : an XOPEN or SQL:2003 code identifying the exception |
vendorCode |
int : a database vendor-specific exception code |
cause |
Throwable : 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. |