AmbiguousImplementationException コンストラクター

定義

オーバーロード

AmbiguousImplementationException()

AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

AmbiguousImplementationException(String)

指定したエラー メッセージを使用して、AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

AmbiguousImplementationException(String, Exception)

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

AmbiguousImplementationException()

ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs

AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

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

適用対象

AmbiguousImplementationException(String)

ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs

指定したエラー メッセージを使用して、AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

public:
 AmbiguousImplementationException(System::String ^ message);
public AmbiguousImplementationException (string? message);
public AmbiguousImplementationException (string message);
new System.Runtime.AmbiguousImplementationException : string -> System.Runtime.AmbiguousImplementationException
Public Sub New (message As String)

パラメーター

message
String

ローカライズされたエラー メッセージ文字列。

適用対象

AmbiguousImplementationException(String, Exception)

ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs
ソース:
AmbiguousImplementationException.cs

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、AmbiguousImplementationException クラスの新しいインスタンスを初期化します。

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

パラメーター

message
String

エラーを説明する文字列。

innerException
Exception

現在の例外の原因となった例外。

適用対象