throw
Mon 01 January 2018Syntax
throw expression
Description
Use the throw statement to throw an exception. This can be used to create your own exceptions, instead of using ones generated by the system.
Parameters
Field or Control |
Definition |
---|---|
expression |
Specify the exception object that you want to throw. This can either be an already defined and created exception object, or one that you create with the Throw statement. |
Returns
None.