#include #include using namespace std; void function2() { throw 10 ; } void function1() { function2() ; } int main() { function1() ; return 0; }