Catch

Specifies the code to execute if an exception is raised during execution of a try statement.

Catch OutputVar
    Statement
Catch OutputVar
{
    Statements
}

Parameters

OutputVar

(Optional) The name of the variable in which to store the value of the exception.

Statement(s)

The functions or expressions to execute if an exception is raised.

Remarks

Every use of catch must belong to (be associated with) a try statement above it. A catch always belongs to the nearest unclaimed try statement above it unless a block is used to change that behavior.

The One True Brace (OTB) style may optionally be used. For example:

try {
    ...
} catch e {
    ...
}

Runtime Errors

A try-catch statement can also be used to handle runtime errors. If a runtime error or exception is not handled, an error message is displayed and the current thread exits. Loadtime errors cannot be handled, since they occur before the try statement is executed.

The value that is stored in OutputVar (if present) is an exception object.

Related

Try, Throw, Finally, Blocks

Examples

See Try.