EXCEPTION

Creates the exception table index in the output file.

EXCEPTION
  
Remarks

Only C++ code requires exception tables. To create an exception table, add the EXCEPTION command, with symbols __exception_table_start__ and __exception_table_end__ , to the end of your code section segment, just as Creating an Exception Table shows. (At runtime, the system knows the values of the two symbols.)

Example

Creating an Exception Table shows the code for creating an exception table.

Listing 1. Creating an Exception Table
  __exception_table_start__ = .;
  EXCEPTION

  __exception_table_end__ = .;