try/catch
section is designed to handle expected errors and prevent the program terminating, while also allowing special fail-case behaviour to be run.try
effect as the section header. This header has no inputs or options.try
section must always be followed by a catch
section.try
section. The catch %Variable%
section accepts a normal variable.catch
section will not be run.break
instructions will exit this tree entirely (jump to after the catch
section finishes.)