Share via


EntityCommandCompilationException コンストラクター

定義

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

オーバーロード

EntityCommandCompilationException()

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

EntityCommandCompilationException(String)

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

EntityCommandCompilationException(String, Exception)

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

注釈

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

EntityCommandCompilationException()

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

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

注釈

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

適用対象

EntityCommandCompilationException(String)

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

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

パラメーター

message
String

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

注釈

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

適用対象

EntityCommandCompilationException(String, Exception)

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

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

パラメーター

message
String

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

innerException
Exception

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

注釈

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

適用対象