Changeset 22634
- Timestamp:
- 03/26/18 16:08:39 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h
r19701 r22634 61 61 catch(ErrorException &exception){\ 62 62 exception.Report();\ 63 return 0;\63 return 1;\ 64 64 }\ 65 65 catch(exception& e) {\ 66 66 _printf_("Standard exception: " << e.what() << "\n\n");\ 67 return 0;\67 return 1;\ 68 68 }\ 69 69 catch(...){\ 70 70 _printf_("An unexpected error occurred \n\n");\ 71 return 0;\71 return 1;\ 72 72 } 73 73 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.