EntityCommandExecutionException コンストラクター

定義

EntityCommandExecutionException の新しいインスタンスを初期化します。

オーバーロード

EntityCommandExecutionException()

EntityCommandExecutionException の新しいインスタンスを初期化します。

EntityCommandExecutionException(String)

EntityCommandExecutionException の新しいインスタンスを初期化します。

EntityCommandExecutionException(String, Exception)

EntityCommandExecutionException の新しいインスタンスを初期化します。

注釈

コードの例外を処理する方法の詳細については、「Exception」を参照してください。

EntityCommandExecutionException()

EntityCommandExecutionException の新しいインスタンスを初期化します。

public:
 EntityCommandExecutionException();
public EntityCommandExecutionException ();
Public Sub New ()

注釈

コードの例外を処理する方法の詳細については、「Exception」を参照してください。

適用対象

EntityCommandExecutionException(String)

EntityCommandExecutionException の新しいインスタンスを初期化します。

public:
 EntityCommandExecutionException(System::String ^ message);
public EntityCommandExecutionException (string message);
new System.Data.EntityCommandExecutionException : string -> System.Data.EntityCommandExecutionException
Public Sub New (message As String)

パラメーター

message
String

エラーを説明するメッセージ。

注釈

コードの例外を処理する方法の詳細については、「Exception」を参照してください。

適用対象

EntityCommandExecutionException(String, Exception)

EntityCommandExecutionException の新しいインスタンスを初期化します。

public:
 EntityCommandExecutionException(System::String ^ message, Exception ^ innerException);
public EntityCommandExecutionException (string message, Exception innerException);
new System.Data.EntityCommandExecutionException : string * Exception -> System.Data.EntityCommandExecutionException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

innerException
Exception

現在の例外を引き起こした例外。内部例外が指定されていない場合は、null 参照 (Visual Basic の場合は Nothing)。

注釈

コードの例外を処理する方法の詳細については、「Exception」を参照してください。

適用対象