Listing 3

statement:
       statement
       FAIL( expression );
       RETRY;
       exception-handling-statement

exception-handling-statement:
       BEGIN_TRY try-clause END_TRY;
       BEGIN_TRY try-clause FAIL_TRY fail-clause END_TRY;

try-clause:
       statement

fail-clause:
       statement

// End of File