bool uncaught_exception() throw();
bool uncaught_exception() noexcept;
true
if an exception has been thrown but the initialization of the exception declaration in the matching handler (including an automatic call to unexpected or terminate) is not yet complete.true
may result in the termination of the exception handling proccess (i.e., an automatic call to terminate).true
if an exception has been thrown and has not yet been handled by its appropriate catch
handler, including stack unwinding.false
otherwise.