Defined in header
<exception> | ||
---|---|---|
void terminate(); | (until C++11) | |
[[noreturn]] void terminate(); | (since C++11) |
std::terminate()
is called by the C++ runtime when exception handling fails for any of the following reasons:
std::unexpected
is executedstd::unexpected
throws an exception that violates the previously violated dynamic exception specification, if the specification does not include std::bad_exception
std::nested_exception::rethrow_nested
is called for an object that isn't holding a captured exceptionstd::thread
std::thread
is destroyed or assigned tostd::terminate()
may also be called directly from the program.
In any case, std::terminate
calls the currently installed std::terminate_handler
. The default std::terminate_handler
calls std::abort
.
If a destructor reset the terminate handler during stack unwinding and the unwinding later led to | (until C++11) |
If a destructor reset the terminate handler during stack unwinding, it is unspecified which handler is called if the unwinding later led to | (since C++17) |
(none).
(none).
(none) | (until C++11) |
noexcept specification: noexcept | (since C++11) |
the type of the function called by std::terminate (typedef) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/error/terminate