// The following is equivalent to:
// void f() throw(A,B) {//Whatever}
void f()
{
try
{
// Whatever
}
catch(A)
{
throw; // rethrow
}
catch(B)
{
throw; // rethrow
}
catch(...)
{
unexpected( );
}
}
// End of File