- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- java.sql.SQLNonTransientException
-
- java.sql.SQLFeatureNotSupportedException
-
- 实现的所有接口
-
Serializable
,Iterable<Throwable>
public class SQLFeatureNotSupportedException extends SQLNonTransientException
当SQLState类值为“ 0A ”(值为“零”A)时抛出的子类SQLException
。 这表明JDBC驱动程序不支持可选的JDBC功能。 可选的JDBC功能可能属于以下类别:- 不支持可选功能
- 不支持可选的重载方法
- 不支持方法的可选模式。 方法的模式基于作为参数值传递给方法的常量来确定
- 从以下版本开始:
- 1.6
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 SQLFeatureNotSupportedException()
构造一个SQLFeatureNotSupportedException
对象。SQLFeatureNotSupportedException(String reason)
使用给定的reason
构造SQLFeatureNotSupportedException
对象。SQLFeatureNotSupportedException(String reason, String SQLState)
使用给定的reason
和SQLState
构造一个SQLFeatureNotSupportedException
对象。SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
和vendorCode
。SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
,vendorCode
和cause
。SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
和cause
。SQLFeatureNotSupportedException(String reason, Throwable cause)
使用给定的reason
和cause
构造SQLFeatureNotSupportedException
对象。SQLFeatureNotSupportedException(Throwable cause)
使用给定的cause
构造一个SQLFeatureNotSupportedException
对象。
-
方法摘要
-
声明方法的类 java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
声明方法的类 java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
声明方法的类 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
声明方法的接口 java.lang.Iterable
forEach, spliterator
-
-
-
-
构造方法详细信息
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException()
构造一个SQLFeatureNotSupportedException
对象。 的reason
,SQLState
被初始化为null
,供应商代码被初始化为0。cause
没有初始化,随后可以通过向一个呼叫进行初始化Throwable.initCause(java.lang.Throwable)
方法。- 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason)
使用给定的reason
构造SQLFeatureNotSupportedException
对象。SQLState
初始化为null
,供应商代码初始化为cause
未初始化,随后可通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。- 参数
-
reason
- 异常的描述 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason, String SQLState)
使用给定的reason
和SQLState
构造SQLFeatureNotSupportedException
对象。cause
未初始化,随后可通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。 供应商代码初始化为0。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
和vendorCode
。cause
未初始化,随后可通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
vendorCode
- 特定于数据库供应商的异常代码 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(Throwable cause)
使用给定的cause
构造一个SQLFeatureNotSupportedException
对象。SQLState
初始化为null
,供应商代码初始化为0.reason
初始化为null
如果为cause==null
或cause.toString()
如果为cause!=null
。- 参数
-
cause
- 此SQLException
的基本原因(保存以供以后通过getCause()
方法检索); 可以为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason, Throwable cause)
使用给定的reason
和cause
构造一个SQLFeatureNotSupportedException
对象。SQLState
初始化为null
,供应商代码初始化为0。- 参数
-
reason
- 异常的描述。 -
cause
- 此SQLException
的基本原因(保存以供以后通过getCause()
方法检索); 可以为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
和cause
。 供应商代码初始化为0。- 参数
-
reason
- 异常的描述。 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
cause
- (保存以供以后通过getCause()
方法检索); 可以为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
SQLFeatureNotSupportedException
public SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause)
构造一个SQLFeatureNotSupportedException
与给定对象reason
,SQLState
,vendorCode
和cause
。- 参数
-
reason
- 异常的描述 -
SQLState
- 标识异常的XOPEN或SQL:2003代码 -
vendorCode
- 特定于数据库供应商的异常代码 -
cause
- 此SQLException
的基本原因(保存以供以后通过getCause()
方法检索); 可以为空,表示原因不存在或未知。 - 从以下版本开始:
- 1.6
-
-