try catch example


/ Published in: C++
Save to your folder(s)



Copy this code and paste it in your HTML
  1. using namespace std;
  2.  
  3. int main()
  4. {
  5. char *buf;
  6. try
  7. {
  8. buf = new char[512];
  9. if( buf == 0 )
  10. throw "Memory allocation failure!";
  11. }
  12. catch( char * str )
  13. {
  14. cout << "Exception raised: " << str << '\n';
  15. }
  16. // ...
  17. return 0;
  18. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.