arc:throw

Version 23.4.8839


arc:throw

Version 23.4.8839


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" />

See Also

  • arc:try: Define a scope for catching exceptions.
  • arc:catch: Catch thrown exceptions and define exception processing.