#include using namespace std; void exceptions(); void noExceptFun() noexcept; void nestedTryCatch(); int main(){ exceptions(); nestedTryCatch(); try{ noExceptFun(); }catch(bad_alloc ex){ cout<<"Questo punto non verrà mai raggiunto"; } } void nestedTryCatch(){ try{ try{ throw exception(); }catch(exception ex){ throw ex; } }catch(exception ex){ cout<<"Eccezione catturata"<