TCodeTryExceptStatement.Create Constructor
Creates a try-except statement with the specified body and except statements.
Syntax
Unit: Bcl.Code.MetaClasses
constructor TCodeTryExceptStatement.Create(AStatements: TArray<TCodeStatement>; AExceptStatements: TArray<TCodeStatement>);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| AStatements | TArray<TCodeStatement> | The statements in the try block. | |
| AExceptStatements | TArray<TCodeStatement> | The statements in the except block. |