- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- java.sql.SQLTransientException
-
- All Implemented Interfaces:
-
Serializable
,Iterable<Throwable>
public class SQLTransientException extends SQLException
SQLException
的子类被抛出在以前失败的操作可能能够成功的情况下,当操作被重试而没有任何干预的应用程序级功能。- 从以下版本开始:
- 1.6
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SQLTransientException()
构造一个SQLTransientException
对象。SQLTransientException(String reason)
构造一个SQLTransientException
对象与给定的reason
。SQLTransientException(String reason, String SQLState)
使用给定的reason
和SQLState
构造一个SQLTransientException
对象。SQLTransientException(String reason, String SQLState, int vendorCode)
构造一个SQLTransientException
与给定对象reason
,SQLState
和vendorCode
。SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause)
构造一个SQLTransientException
与给定对象reason
,SQLState
,vendorCode
和cause
。SQLTransientException(String reason, String SQLState, Throwable cause)
构造一个SQLTransientException
与给定对象reason
,SQLState
和cause
。SQLTransientException(String reason, Throwable cause)
使用给定的reason
和cause
构造一个SQLTransientException
对象。SQLTransientException(Throwable cause)
构造一个SQLTransientException
对象与给定的cause
。
-
方法摘要
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
SQLTransientException
public SQLTransientException()
构造一个SQLTransientException
对象。 的reason
,SQLState
被初始化为null
和供应商代码被初始化为0。cause
没有初始化,随后可以通过向一个呼叫进行初始化Throwable.initCause(java.lang.Throwable)
方法。- 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason)
构造一个SQLTransientException
对象与给定的reason
。SQLState
初始化为null
,供应商代码初始化为0.cause
未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。- 参数
-
reason
- 异常的描述 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason, String SQLState)
使用给定的reason
和SQLState
构造一个SQLTransientException
对象。cause
未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。 供应商代码初始化为0。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason, String SQLState, int vendorCode)
构造一个SQLTransientException
与给定对象reason
,SQLState
和vendorCode
。cause
未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
vendorCode
- 数据库供应商特定的异常代码 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(Throwable cause)
构造一个SQLTransientException
对象与给定的cause
。SQLState
初始化为null
,供应商代码初始化为0.null
如果为reason
则初始化为cause==null
或cause.toString()
如果为cause!=null
。- 参数
-
cause
- 这个SQLException
的基本原因(其保存以供getCause()
方法稍后检索); 可能为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason, Throwable cause)
构造一个SQLTransientException
对象与给定的reason
和cause
。SQLState
被初始化为null
,供应商代码被初始化为0。- 参数
-
reason
- 异常的描述。 -
cause
- 这是SQLException
(其保存以供getCause()
方法稍后检索)的根本原因; 可能为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason, String SQLState, Throwable cause)
构造一个SQLTransientException
与给定对象reason
,SQLState
和cause
。 供应商代码初始化为0。- 参数
-
reason
- 异常的描述。 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
cause
- 这个SQLException
(其保存以供getCause()
方法稍后检索)的根本原因; 可能为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLTransientException
public SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause)
构造一个SQLTransientException
与给定对象reason
,SQLState
,vendorCode
和cause
。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
vendorCode
- 数据库供应商特定的异常代码 -
cause
- 这个SQLException
的基本原因(保存以供getCause()
方法稍后检索); 可能为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
-