Hi,
how can I re-throw an exception caught by
catch(...)
block?
throw with no operand rethrows the "current exception".
throw
This is how.
catch(...) { throw; }