ContinueOutOfFinally Constructors

Definition

Initializes a new instance of the ContinueOutOfFinally class.

Overloads

ContinueOutOfFinally()

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

Initializes a new instance of the ContinueOutOfFinally class.

ContinueOutOfFinally(Int32)

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

Initializes a new instance of the ContinueOutOfFinally class, using the specified target.

ContinueOutOfFinally(String)

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

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

ContinueOutOfFinally(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 ContinueOutOfFinally class, using the specified error message and a reference to the inner exception that is the cause of this exception.

ContinueOutOfFinally()

Initializes a new instance of the ContinueOutOfFinally class.

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

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

See also

Applies to

ContinueOutOfFinally(Int32)

Initializes a new instance of the ContinueOutOfFinally class, using the specified target.

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

public:
 ContinueOutOfFinally(int target);
public ContinueOutOfFinally (int target);
new Microsoft.JScript.ContinueOutOfFinally : int -> Microsoft.JScript.ContinueOutOfFinally
Public Sub New (target As Integer)

Parameters

target
Int32

The target of the exception.

See also

Applies to

ContinueOutOfFinally(String)

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

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

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

Parameters

m
String

The message that describes the error.

See also

Applies to

ContinueOutOfFinally(String, Exception)

Initializes a new instance of the ContinueOutOfFinally 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:
 ContinueOutOfFinally(System::String ^ m, Exception ^ e);
public ContinueOutOfFinally (string m, Exception e);
new Microsoft.JScript.ContinueOutOfFinally : string * Exception -> Microsoft.JScript.ContinueOutOfFinally
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