NAME
	catch - catch errorrs

SYNTAX
	catch { commands }
	or
	catch ( expression )

DESCRIPTION
	catch traps exceptions such as run time errors or calls to throw() and
	returns the argument given to throw. For a run time error, this value
	is ({ "error message", backtrace }) 

SEE ALSO
	builtin/throw
