#include #include int main () { std::cout << "Before!" << std::endl; try { throw std::exception(); } catch (std::exception) { std::cout << "PANIC!" << std::endl; } std::cout << "After!" << std::endl; }