Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 866 Bytes

restrictions-on-exception-handlers.md

File metadata and controls

15 lines (12 loc) · 866 Bytes
title description ms.date helpviewer_keywords ms.assetid
Restrictions on exception handlers
Describes the restrictions on jumping into structured exception handling blocks.
08/24/2020
restrictions, exception handlers
exception handling [C++], exception handlers
31d63524-0e8c-419f-b87c-061f4c0ea470

Restrictions on exception handlers

The principal limitation to using exception handlers in code is that you can't 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 you can nest exception handlers as you choose.

See also

Writing an exception handler
Structured Exception Handling (C/C++)