C++ get description of an exception caught in catch(...) block

Viewed 13365

can I get description of an exception caught by

catch(...)

block? something like .what() of std::exception.

6 Answers
Related