19.3.2 catch(...), rethrow (cont.)

try
{
   code
}
catch (FutureValueError& e)
{
   statements1
}
catch (...) // Catch any remaining exceptions
{
   statements2
   throw; // Rethrow the error
}
(See 19.3.3 for example)

prev |top |next