Changeset 5747 for code/trunk/src/libraries/core/XMLPort.h
- Timestamp:
- Sep 19, 2009, 11:17:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/XMLPort.h
r5738 r5747 591 591 throw ex; 592 592 } 593 catch ( std::exception& ex)593 catch (...) 594 594 { 595 595 COUT(1) << "An error occurred while loading object:" << std::endl; 596 COUT(1) << ex.what() << std::endl; 597 } 598 catch (...) 599 { 600 COUT(1) << "An unknown error occurred while loading object." << std::endl; 596 COUT(1) << Exception::handleMessage() << std::endl; 601 597 } 602 598 }
Note: See TracChangeset
for help on using the changeset viewer.