CodeThrowExceptionStatement 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 CodeThrowExceptionStatement class.
Overloads
CodeThrowExceptionStatement() |
Initializes a new instance of the CodeThrowExceptionStatement class. |
CodeThrowExceptionStatement(CodeExpression) |
Initializes a new instance of the CodeThrowExceptionStatement class with the specified exception type instance. |
CodeThrowExceptionStatement()
Initializes a new instance of the CodeThrowExceptionStatement class.
public:
CodeThrowExceptionStatement();
public CodeThrowExceptionStatement ();
Public Sub New ()
Applies to
CodeThrowExceptionStatement(CodeExpression)
Initializes a new instance of the CodeThrowExceptionStatement class with the specified exception type instance.
public:
CodeThrowExceptionStatement(System::CodeDom::CodeExpression ^ toThrow);
public CodeThrowExceptionStatement (System.CodeDom.CodeExpression toThrow);
new System.CodeDom.CodeThrowExceptionStatement : System.CodeDom.CodeExpression -> System.CodeDom.CodeThrowExceptionStatement
Public Sub New (toThrow As CodeExpression)
Parameters
- toThrow
- CodeExpression
A CodeExpression that indicates the exception to throw.