arc:throw
Version 22.0.8473
arc:throw
Version 22.0.8473
The arc:throw keyword is used to raise an error (exception) from within a script.
Parameters
- code: A string value used to identify the source or meaning of the exception. This parameter is required.
- desc[ription]: An optional parameter that specifies a short message describing the error condition.
- details: An optional parameter that can specify additional data useful to diagnose the error condition.
Control Attributes
None
Example
The example below explicitly defines both the error code and description:
<arc:throw code="myerror" desc="thedescription" />