...
Throwing an exception copy-initializes a temporary object, called the exception object. The temporary is an lvalue and is used to initialize the variable declared in the matching handler.
If the copy constructor for the exception object type throws during the copy initialization, std::terminate()
is called, which can result in undefined behavior. For more information on implicitly calling std::terminate()
, see ERR50-CPP. Do not call std::terminate(), std::abort(), or std::_Exit().
...
[ISO/IEC 14882-2014] | Subclause 15.1, "Throwing an Exception" |
[Hinnant 2015] |
...