Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.57 KB

exception-handling-routines.md

File metadata and controls

31 lines (26 loc) · 1.57 KB
title ms.custom ms.date ms.technology ms.topic f1_keywords dev_langs helpviewer_keywords ms.assetid author ms.author ms.workload
Exception Handling Routines | Microsoft Docs
11/04/2016
cpp-standard-libraries
conceptual
c.exceptions
C++
exception handling, routines
f60548c6-850a-4e1e-a79b-a2a6a541ab62
corob-msft
corob
cplusplus

Exception Handling Routines

Use the C++ exception-handling functions to recover from unexpected events during program execution.

Exception-Handling Functions

Function Use
_set_se_translator Handle Win32 exceptions (C structured exceptions) as C++ typed exceptions
set_terminate Install your own termination routine to be called by terminate
set_unexpected Install your own termination function to be called by unexpected
terminate Called automatically under certain circumstances after exception is thrown. The terminate function calls abort or a function you specify using set_terminate
unexpected Calls terminate or a function you specify using set_unexpected. The unexpected function is not used in current Microsoft C++ exception-handling implementation

See Also

Universal C runtime routines by category