public class SQLIntegrityConstraintViolationException extends SQLNonTransientException
SQLException
的子类。
这表示违反完整性约束(外键,主键或唯一键)。
请咨询您的驱动程序供应商文档, 异常
可能抛出此异常
的供应商指定的条件。
Constructor and Description |
---|
SQLIntegrityConstraintViolationException()
构造一个
SQLIntegrityConstraintViolationException 对象。
|
SQLIntegrityConstraintViolationException(String reason)
构造一个
SQLIntegrityConstraintViolationException 与给定的
reason 。
|
SQLIntegrityConstraintViolationException(String reason, String SQLState)
构造一个
SQLIntegrityConstraintViolationException 对象与给定的
reason 和
SQLState 。
|
SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode)
构造一个
SQLIntegrityConstraintViolationException 与给定对象
reason ,
SQLState 和
vendorCode 。
|
SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause)
构造一个
SQLIntegrityConstraintViolationException 与给定对象
reason ,
SQLState ,
vendorCode 和
cause 。
|
SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause)
构造一个
SQLIntegrityConstraintViolationException 与给定对象
reason ,
SQLState 和
cause 。
|
SQLIntegrityConstraintViolationException(String reason, Throwable cause)
使用给定的
reason 和
cause 构造一个
SQLIntegrityConstraintViolationException 对象。
|
SQLIntegrityConstraintViolationException(Throwable cause)
构造一个
SQLIntegrityConstraintViolationException 对象与给定的
cause 。
|
getErrorCode, getNextException, getSQLState, iterator, setNextException
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEach, spliterator
public SQLIntegrityConstraintViolationException()
SQLIntegrityConstraintViolationException
对象。
的reason
, SQLState
被初始化为null
,供应商代码被初始化为0。 cause
没有初始化,随后可以通过向一个呼叫进行初始化Throwable.initCause(java.lang.Throwable)
方法。
public SQLIntegrityConstraintViolationException(String reason)
SQLIntegrityConstraintViolationException
与给定的reason
。
SQLState
初始化为null
,供应商代码初始化为0. cause
未初始化,随后可以通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化 。
reason
- 异常的描述
public SQLIntegrityConstraintViolationException(String reason, String SQLState)
reason
和SQLState
构造一个SQLIntegrityConstraintViolationException
对象。
cause
未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)
方法初始化 。
供应商代码初始化为0。
reason
- 异常的描述
SQLState
-
SQLState
的XOPEN或SQL:2003代码
public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode)
SQLIntegrityConstraintViolationException
与给定对象reason
, SQLState
和vendorCode
。
cause
未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)
方法进行初始化 。
reason
- 异常的描述
SQLState
-
SQLState
的XOPEN或SQL:2003代码
vendorCode
- 数据库供应商特定的异常代码
public SQLIntegrityConstraintViolationException(Throwable cause)
cause
构造一个SQLIntegrityConstraintViolationException
对象。
该SQLState
初始化为null
,供应商代码初始化为0。 reason
被初始化为null
如果cause==null
或cause.toString()
如果cause!=null
。
cause
-底层原因SQLException
(保存用于由稍后检索getCause()
方法);
可能为空,表示原因不存在或未知。
public SQLIntegrityConstraintViolationException(String reason, Throwable cause)
SQLIntegrityConstraintViolationException
对象与给定的reason
和cause
。
SQLState
初始化为null
,供应商代码初始化为0。
reason
- 异常的描述。
cause
- (由getCause()
方法保存供以后检索);
可能为空,表示原因不存在或未知。
public SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause)
SQLIntegrityConstraintViolationException
与给定对象reason
, SQLState
和cause
。
供应商代码初始化为0。
reason
- 异常的描述。
SQLState
-
SQLState
的XOPEN或SQL:2003代码
cause
-底层原因SQLException
(保存用于由稍后检索getCause()
方法);
可能为空,表示原因不存在或未知。
public SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause)
SQLIntegrityConstraintViolationException
与给定对象
reason
,
SQLState
,
vendorCode
和
cause
。
reason
- 异常的描述
SQLState
-
SQLState
的XOPEN或SQL:2003代码
vendorCode
- 数据库供应商特定的异常代码
cause
- (保存以供稍后通过getCause()
方法getCause()
);
可能为空,表示原因不存在或未知。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.