Creates the exception table index in the output file.
EXCEPTION
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.)
Creating an Exception Table shows the code for creating an exception table.
__exception_table_start__ = .; EXCEPTION __exception_table_end__ = .;