|
libstdc++
|
Classes | |
| class | __cxxabiv1::__forced_unwind |
| class | std::bad_alloc |
| class | std::bad_any_cast |
| class | std::experimental::fundamentals_v1::bad_any_cast |
| class | std::bad_cast |
| class | std::bad_exception |
| class | std::bad_function_call |
| class | std::bad_optional_access |
| class | std::experimental::fundamentals_v1::bad_optional_access |
| class | std::bad_typeid |
| class | std::bad_weak_ptr |
| class | std::domain_error |
| class | std::exception |
| class | std::__exception_ptr::exception_ptr |
| struct | __gnu_cxx::forced_error |
| class | std::future_error |
| class | std::invalid_argument |
| class | std::length_error |
| class | std::logic_error |
| class | std::nested_exception |
| class | std::out_of_range |
| class | std::overflow_error |
| class | std::range_error |
| class | __gnu_cxx::recursive_init_error |
| class | std::regex_error |
| class | std::runtime_error |
| class | std::system_error |
| class | std::underflow_error |
Typedefs | |
| typedef void(* | std::terminate_handler) () |
| typedef void(* | std::unexpected_handler) () |
Functions | |
| void | __gnu_cxx::__verbose_terminate_handler () |
| exception_ptr | std::current_exception () noexcept |
| terminate_handler | std::get_terminate () noexcept |
| unexpected_handler | std::get_unexpected () noexcept |
| template<typename _Ex> | |
| exception_ptr | std::make_exception_ptr (_Ex __ex) noexcept |
| void | std::rethrow_exception (exception_ptr) |
| template<typename _Ex> | |
| void | std::rethrow_if_nested (const _Ex &__ex) |
| terminate_handler | std::set_terminate (terminate_handler) noexcept |
| unexpected_handler | std::set_unexpected (unexpected_handler) noexcept |
| void | std::terminate () noexcept |
| template<typename _Tp> | |
| void | std::throw_with_nested (_Tp &&__t) |
| int | std::uncaught_exceptions () noexcept |
| void | std::unexpected () |
Classes and functions for reporting errors via exceptions.
| typedef void(* std::terminate_handler) () |
| typedef void(* std::unexpected_handler) () |
| void __gnu_cxx::__verbose_terminate_handler | ( | ) |
A replacement for the standard terminate_handler which prints more information about the terminating exception (if any) on stderr.
Call
to use. For more info, see http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt02ch06s02.html
In 3.4 and later, this is on by default.
References __verbose_terminate_handler().
Referenced by __verbose_terminate_handler().
|
noexcept |
Obtain an exception_ptr to the currently handled exception. If there is none, or the currently handled exception is foreign, return the null value.
References make_exception_ptr().
Referenced by make_exception_ptr().
|
noexcept |
Return the current terminate handler.
|
noexcept |
Return the current unexpected handler.
|
noexcept |
Obtain an exception_ptr pointing to a copy of the supplied object.
Definition at line 238 of file exception_ptr.h.
References current_exception(), and forward().
Referenced by current_exception().
| void std::rethrow_exception | ( | exception_ptr | ) |
Throw the object pointed to by the exception_ptr.
References rethrow_exception().
Referenced by std::__basic_future< _Res & >::_M_get_result(), and rethrow_exception().
|
inline |
If __ex is derived from nested_exception, __ex.rethrow_nested().
Definition at line 159 of file nested_exception.h.
References __addressof().
|
noexcept |
Takes a new handler function as an argument, returns the old function.
References set_terminate().
Referenced by set_terminate().
|
noexcept |
Takes a new handler function as an argument, returns the old function.
References set_unexpected().
Referenced by set_unexpected().
|
noexcept |
The runtime will call this function if exception handling must be abandoned for any reason. It can also be called by the user.
|
inline |
If __t is derived from nested_exception, throws __t. Else, throws an implementation-defined object derived from both.
Definition at line 118 of file nested_exception.h.
References forward().
|
noexcept |
[18.6.4]/1: 'Returns true after completing evaluation of a throw-expression until either completing initialization of the exception-declaration in the matching handler or entering unexpected() due to the throw; or after entering terminate() for any reason other than an explicit call to terminate(). [Note: This includes stack unwinding [15.2]. end note]'
2: 'When uncaught_exception() is true, throwing an exception can result in a call of 1terminate()` (15.5.1).' */
bool uncaught_exception() noexcept ;
c++17 or gnu++98 define __cpp_lib_uncaught_exceptions
/** The number of uncaught exceptions.
| void std::unexpected | ( | ) |
The runtime will call this function if an exception is thrown which violates the function's exception specification.