Hello,
is it possible to get some information about an unknown (or unexpected) exception?
e.g

try{
//...do something
}
catch(...)
{
//print some information
}

in this case I want to know which exception was thrown..in other languages (java, c#...) this is possible. But I'm not sure if it is also possible in c++

Best regards
Hansjörg