Resolution:
Correct the code; then recompile.
Example:
In the following example, both TRY blocks are in error as each one includes EXIT ITERATOR.
       class-id A.
       iterator-id MyIterator yielding ret as string.
           try
               continue
           catch
               display "Caught exception"
               set ret to "A"
               exit iterator                           *> Error
           end-try
           try
               continue
           finally
               display "In finally block"
               set ret to "C"
               exit iterator                           *> Error
           end-try
       end iterator.
       end class.