InsufficientExecutionStackException Constructors

Definition

Initializes a new instance of the InsufficientExecutionStackException class.

Overloads

InsufficientExecutionStackException()

Initializes a new instance of the InsufficientExecutionStackException class.

InsufficientExecutionStackException(String)

Initializes a new instance of the InsufficientExecutionStackException class with a specified error message.

InsufficientExecutionStackException(String, Exception)

Initializes a new instance of the InsufficientExecutionStackException class with a specified error message and a reference to the inner exception that is the cause of this exception.

InsufficientExecutionStackException()

Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs

Initializes a new instance of the InsufficientExecutionStackException class.

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

Applies to

InsufficientExecutionStackException(String)

Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs

Initializes a new instance of the InsufficientExecutionStackException class with a specified error message.

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

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

InsufficientExecutionStackException(String, Exception)

Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs
Source:
InsufficientExecutionStackException.cs

Initializes a new instance of the InsufficientExecutionStackException class with a specified error message and a reference to the inner exception that is the cause of this exception.

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)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception. If the inner parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Applies to