2.4.2. Relanzar una excepción

catch(...) {
cout << "an exception was thrown" << endl;
// Deallocate your resource here, and then rethrow
    throw;
}