The latest version of this topic can be found at Restrictions on Exception Handlers.
The principal limitation to using exception handlers in code is that you cannot use a goto
statement to jump into a __try
statement block. Instead, you must enter the statement block through normal flow of control. You can jump out of a __try
statement block and nest exception handlers as you choose.
See Also
Writing an Exception Handler
Structured Exception Handling (C/C++)