Exception Handling Routines
Use the C++ exception-handling functions to recover from unexpected events during program execution.
Exception-Handling Functions
Function |
Use |
.NET Framework equivalent |
---|---|---|
Handle Win32 exceptions (C structured exceptions) as C++ typed exceptions |
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples. |
|
Install your own termination routine to be called by terminate |
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples. |
|
Install your own termination function to be called by unexpected |
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples. |
|
Called automatically under certain circumstances after exception is thrown. The terminate function calls abort or a function you specify using set_terminate |
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples. |
|
Calls terminate or a function you specify using set_unexpected. The unexpected function is not used in current Microsoft C++ exception-handling implementation |