Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.16 KB

uncaught-exception.md

File metadata and controls

37 lines (27 loc) · 1.16 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: __uncaught_exception
__uncaught_exception
1/14/2021
__uncaught_exception
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
DLLExport
apiref
EH/__uncaught_exception
__uncaught_exception
4d9b75c6-c9c7-4876-b761-ea9ab1925e96

__uncaught_exception

Indicates whether one or more exceptions have been thrown, but haven't yet been handled by the corresponding catch block of a try-catch statement.

Syntax

bool __uncaught_exception();

Return value

true from the time an exception is thrown in a try block until the matching catch block is initialized; otherwise, false.

Remarks

Requirements

Routine Required header
__uncaught_exception <eh.h>

See also

try, throw, and catch Statements (C++)