ReturnOutOfFinally Constructors

Definition

Initializes a new instance of the ReturnOutOfFinally class.

Overloads

ReturnOutOfFinally()

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the ReturnOutOfFinally class.

ReturnOutOfFinally(String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the ReturnOutOfFinally class, using the specified error message.

ReturnOutOfFinally(String, Exception)

This API supports the product infrastructure and is not intended to be used directly from your code.

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

ReturnOutOfFinally()

Initializes a new instance of the ReturnOutOfFinally class.

This API supports the product infrastructure and is not intended to be used directly from your code.

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

See also

Applies to

ReturnOutOfFinally(String)

Initializes a new instance of the ReturnOutOfFinally class, using the specified error message.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 ReturnOutOfFinally(System::String ^ m);
public ReturnOutOfFinally (string m);
new Microsoft.JScript.ReturnOutOfFinally : string -> Microsoft.JScript.ReturnOutOfFinally
Public Sub New (m As String)

Parameters

m
String

The message that describes the error.

See also

Applies to

ReturnOutOfFinally(String, Exception)

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

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 ReturnOutOfFinally(System::String ^ m, Exception ^ e);
public ReturnOutOfFinally (string m, Exception e);
new Microsoft.JScript.ReturnOutOfFinally : string * Exception -> Microsoft.JScript.ReturnOutOfFinally
Public Sub New (m As String, e As Exception)

Parameters

m
String

The message that describes the error.

e
Exception

The exception that is the cause of the current exception.

See also

Applies to