Guest User

Untitled

a guest
May 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. cout << "start\n";
  7.  
  8. try {
  9. cout << "Inside try block\n";
  10. throw 99;
  11. cout << "This will not execute";
  12. }
  13. catch (int i)
  14. {
  15. cout << "Caught an exeption -- value is: ";
  16. cout << i << "\n";
  17. }
  18.  
  19. cout << "end";
  20. system("PAUSE");
  21. return 0;
  22. }
Add Comment
Please, Sign In to add comment