1#include <iostream> 2 3int main() 4{ 5 try 6 { 7 throw 5; 8 } 9 catch (int e) 10 { 11 std::cout << "Exception: " << e << std::endl; 12 } 13} 14