BreakOutOfFinally Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the BreakOutOfFinally class.
Overloads
BreakOutOfFinally(Int32) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the BreakOutOfFinally class, using the specified target. |
BreakOutOfFinally(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the BreakOutOfFinally class, using the specified error message. |
BreakOutOfFinally(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 BreakOutOfFinally class, using the specified error message and a reference to the inner exception that is the cause of this exception. |
BreakOutOfFinally(Int32)
Initializes a new instance of the BreakOutOfFinally class, using the specified target.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
BreakOutOfFinally(int target);
public BreakOutOfFinally (int target);
new Microsoft.JScript.BreakOutOfFinally : int -> Microsoft.JScript.BreakOutOfFinally
Public Sub New (target As Integer)
Parameters
- target
- Int32
The target of the exception.
See also
Applies to
BreakOutOfFinally(String)
Initializes a new instance of the BreakOutOfFinally class, using the specified error message.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
BreakOutOfFinally(System::String ^ m);
public BreakOutOfFinally (string m);
new Microsoft.JScript.BreakOutOfFinally : string -> Microsoft.JScript.BreakOutOfFinally
Public Sub New (m As String)
Parameters
- m
- String
The message that describes the error.
See also
Applies to
BreakOutOfFinally(String, Exception)
Initializes a new instance of the BreakOutOfFinally 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:
BreakOutOfFinally(System::String ^ m, Exception ^ e);
public BreakOutOfFinally (string m, Exception e);
new Microsoft.JScript.BreakOutOfFinally : string * Exception -> Microsoft.JScript.BreakOutOfFinally
Public Sub New (m As String, e As Exception)
Parameters
- m
- String
The message that describes the error.
The exception that is the cause of the current exception.