|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object java.lang.Throwable java.lang.Exception java.sql.SQLException java.sql.SQLNonTransientException java.sql.SQLIntegrityConstraintViolationException
public class SQLIntegrityConstraintViolationException
SQLState クラス値が '23' のときにスローされる SQLException
のサブクラスです。これは、整合性制約 (外部キー、主キー、または一意キー) の違反が発生したことを示します。
コンストラクタの概要 | |
---|---|
SQLIntegrityConstraintViolationException()
SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason)
指定の reason で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason,
String SQLState)
指定の reason および SQLState で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason,
String SQLState,
int vendorCode)
指定の reason 、SQLState 、および vendorCode で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason,
String SQLState,
int vendorCode,
Throwable cause)
指定の reason 、SQLState 、vendorCode 、および cause で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason,
String SQLState,
Throwable cause)
指定の reason 、SQLState 、および cause で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(String reason,
Throwable cause)
指定の reason および cause で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
|
SQLIntegrityConstraintViolationException(Throwable cause)
指定の cause で SQLIntegrityConstraintViolationException オブジェクトを構築します。 |
メソッドの概要 |
---|
クラス java.sql.SQLException から継承されたメソッド |
---|
getErrorCode, getNextException, getSQLState, iterator, setNextException |
クラス java.lang.Throwable から継承されたメソッド |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
コンストラクタの詳細 |
---|
public SQLIntegrityConstraintViolationException()
SQLIntegrityConstraintViolationException
オブジェクトを構築します。reason
および SQLState
は null
に初期化され、ベンダーコードは 0 に初期化されます。
cause
は初期化されません。Throwable.initCause(java.lang.Throwable)
メソッドを呼び出すことによって、あとでこれを初期化できます。
public SQLIntegrityConstraintViolationException(String reason)
reason
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。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
- 例外を識別する XOPEN コードまたは SQL:2003 コードpublic SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode)
reason
、SQLState
、および vendorCode
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。
cause
は初期化されません。Throwable.initCause(java.lang.Throwable)
メソッドを呼び出すことによって、あとでこれを初期化できます。
reason
- 例外の説明SQLState
- 例外を識別する XOPEN コードまたは SQL:2003 コードvendorCode
- データベースベンダー固有の例外コードpublic SQLIntegrityConstraintViolationException(Throwable cause)
cause
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。SQLState
は null
に初期化され、ベンダーコードは 0 に初期化されます。reason
は cause==null
の場合に null
に初期化され、cause!=null
の場合に cause.toString()
に初期化されます。
cause
- この SQLException
の基となる原因 (あとで getCause()
メソッドで取得するために保存される)。null 値が許可されており、原因が存在しないか不明であることを示すpublic SQLIntegrityConstraintViolationException(String reason, Throwable cause)
reason
および cause
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。SQLState
は null
に初期化され、ベンダーコードは 0 に初期化されます。
reason
- 例外の説明cause
- (あとで getCause()
メソッドで取得するために保存される)。null 値が許可されており、原因が存在しないか不明であることを示すpublic SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause)
reason
、SQLState
、および cause
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。ベンダーコードは 0 に初期化されます。
reason
- 例外の説明SQLState
- 例外を識別する XOPEN コードまたは SQL:2003 コードcause
- この SQLException
の基となる原因 (あとで getCause()
メソッドで取得するために保存される)。null 値が許可されており、原因が存在しないか不明であることを示すpublic SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause)
reason
、SQLState
、vendorCode
、および cause
で SQLIntegrityConstraintViolationException
オブジェクトを構築します。
reason
- 例外の説明SQLState
- 例外を識別する XOPEN コードまたは SQL:2003 コードvendorCode
- データベースベンダー固有の例外コードcause
- (あとで getCause()
メソッドで取得するために保存される)。null 値が許可されており、原因が存在しないか不明であることを示す
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。