Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.37 KB

about-structured-exception-handling.md

File metadata and controls

26 lines (17 loc) · 1.37 KB
description ms.assetid title ms.topic ms.date
The structured exception handling and termination handling mechanisms are integral parts of the system; they enable the system to be robust. You can use these mechanisms to create consistently robust and reliable applications.
ab5bc1bd-107f-4ed2-b471-a229a76637fe
About Structured Exception Handling
article
05/31/2018

About Structured Exception Handling

The structured exception handling and termination handling mechanisms are integral parts of the system; they enable the system to be robust. You can use these mechanisms to create consistently robust and reliable applications.

Structured exception handling is made available primarily through compiler support. For example, the Microsoft C/C++ Optimizing Compiler supports the __try keyword that identifies a guarded body of code, the __except keyword that identifies an exception handler, and the __finally keyword that identifies a termination handler. Although this overview uses examples specific to the Microsoft C/C++ compiler, other compilers provide this support as well.