Arbortext Command Language > Functions by Alphabetical Listing > throw
  
throw
throw(expr)
This function transfers control by returning from the innermost active catch function. The value of the expression expr becomes the return value from catch. expr must not evaluate to zero; if it does, 1 is used instead.
If throw is used outside the context of a catch, control is transferred to the top level, aborting the command execution.
Related Topics
catch built-in function