Changeset 7174 for code/trunk/src/libraries/util
- Timestamp:
- Aug 18, 2010, 12:08:05 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/util/Exception.cc
r6417 r7174 34 34 35 35 #include "Exception.h" 36 36 37 #include <CEGUIExceptions.h> 38 #include "Debug.h" 37 39 38 40 namespace orxonox … … 115 117 catch (...) 116 118 { 117 return "Unknown exception"; 119 COUT(0) << "BIG WARNING: Unknown exception type encountered." 120 << "Rethrowing" << endl; 121 throw; 118 122 } 119 123 }
Note: See TracChangeset
for help on using the changeset viewer.