std::rethrow_if_nested (3) Linux Manual Page
std::rethrow_if_nested – std::rethrow_if_nested Synopsis Defined in header<exception> template <class E> (since C++ 11) void rethrow_if_nested(const E &e); If E is not a polymorphic class type, or if std::nested_exception is an inaccessible or ambiguous base class of E, there is no effect. Otherwise, performs if (auto p = dynamic_cast<const std::nested_exception *>(std::addressof(e))) p->rethrow_nested(); Parameters e – the…
