Most visited

Recently visited

Added in API level 9

SQLNonTransientException

public class SQLNonTransientException
extends SQLException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.sql.SQLException
         ↳ java.sql.SQLNonTransientException
Known Direct Subclasses


SQLException的子类当同一操作的重试失败除非 SQLException的原因得到纠正的情况下抛出。

Summary

Public constructors

SQLNonTransientException()

构造一个 SQLNonTransientException对象。

SQLNonTransientException(String reason)

用给定的 reason构造一个 SQLNonTransientException对象。

SQLNonTransientException(String reason, String SQLState)

用给定的 reasonSQLState构造一个 SQLNonTransientException对象。

SQLNonTransientException(String reason, String SQLState, int vendorCode)

构造一个 SQLNonTransientException与给定对象 reasonSQLStatevendorCode

SQLNonTransientException(Throwable cause)

使用给定的 cause构造一个 SQLNonTransientException对象。

SQLNonTransientException(String reason, Throwable cause)

用给定的 reasoncause构造一个 SQLTransientException对象。

SQLNonTransientException(String reason, String SQLState, Throwable cause)

构造一个 SQLNonTransientException与给定对象 reasonSQLStatecause

SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause)

构造一个 SQLNonTransientException与给定对象 reasonSQLStatevendorCodecause

Inherited methods

From class java.sql.SQLException
From class java.lang.Throwable
From class java.lang.Object
From interface java.lang.Iterable

Public constructors

SQLNonTransientException

Added in API level 9
SQLNonTransientException ()

构造一个SQLNonTransientException对象。 reasonSQLState被初始化为null和供应商代码被初始化为0。 cause没有初始化,随后可以通过向一个呼叫进行初始化initCause(java.lang.Throwable)方法。

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason)

用给定的reason构造一个SQLNonTransientException对象。 SQLState初始化为null ,供应商代码初始化为cause未初始化,随后可以通过调用initCause(java.lang.Throwable)方法初始化。

Parameters
reason String: a description of the exception

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason, 
                String SQLState)

使用给定的reasonSQLState构造一个SQLNonTransientException对象。 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

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason, 
                String SQLState, 
                int vendorCode)

构造一个SQLNonTransientException与给定对象reasonSQLStatevendorCode 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

SQLNonTransientException

Added in API level 9
SQLNonTransientException (Throwable cause)

Constructs a SQLNonTransientException object with a given cause. The SQLState is initialized to null and the vendor code is initialized to 0. The reason is initialized to null if cause==null or to cause.toString() if 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.

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason, 
                Throwable cause)

用给定的reasoncause构造一个SQLTransientException对象。 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.

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason, 
                String SQLState, 
                Throwable cause)

构造一个SQLNonTransientException与给定对象reasonSQLStatecause 供应商代码初始化为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.

SQLNonTransientException

Added in API level 9
SQLNonTransientException (String reason, 
                String SQLState, 
                int vendorCode, 
                Throwable cause)

构造一个 SQLNonTransientException与给定对象 reasonSQLStatevendorCodecause

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.

Hooray!