言語

InsufficientExecutionStackException コンストラクター

定義

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

オーバーロード

名前 説明
InsufficientExecutionStackException()

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

InsufficientExecutionStackException(String)

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

InsufficientExecutionStackException(String, Exception)

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

InsufficientExecutionStackException()

ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs

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

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

適用対象

InsufficientExecutionStackException(String)

ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs

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

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

パラメーター

message
String

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

適用対象

InsufficientExecutionStackException(String, Exception)

ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs
ソース:
InsufficientExecutionStackException.cs

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

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

パラメーター

message
String

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

innerException
Exception

現在の例外の原因である例外。 inner パラメーターがnullされていない場合、内部例外を処理するcatch ブロックで現在の例外が発生します。

適用対象