THROW
The function THROW throws an error, halting evaluation and providing identifying error details based on the given input.
[block:callout] { "type": "info", "body": "The THROW function is unique among Airscript functions in that it halts evaluation, preventing it from returning any output. Input given to the THROW function, describing the error identifier, the error message, and, optionally, any metadata pertaining to the error will be incorporated into the error details as well as the error message." } [/block]
Declaration
Parameters
error_identifier (required, type: string
) The error identifier.
error_message (required, type: string
) The error message.
error_metadata (optional, type: object
) Metadata pertaining to the error.
Return Values
This function halts evaluation, preventing it from returning any values.
Examples
When called correctly, the THROW function will throw an error:
The error thrown by a correctly-called THROW function, however, will differ from an error thrown by an incorrectly-called THROW function, in that the given input will be used to generate the error details. For instance, in the case of the above expression, the error details will appear as follows. Note that the value of metadata.identifier
matches the error_identifier
given in the expression above; likewise, metadata.message
matches the given error_message
:
The THROW function can optionally accept metadata in the form of an object. This object can consist of any number of key-value pairs:
The error details of the above expression will appear as follows. Note that the value of metadata.metadata
matches the value of error_metadata
given in the expression above:
Airscript expressions can be used to generate more specific values for identifiers, messages, or metadata. For instance, say the following expression have access to the variable found_status
, which is defined as follows:
This variable can be used to generate an error message that displays the found status in addition to flagging the status as unexpected:
The error details of the above expression will appear as follows. Note how the value of metadata.message
appears:
Discussion
As a more concrete example, the THROW function can be used to thrown an error if some date variable (input_date
) indicates a date before the present day:
Last updated
Was this helpful?