Changeset 8283 for code/branches/kicklib2/src/libraries/util
- Timestamp:
- Apr 21, 2011, 6:32:28 PM (14 years ago)
- Location:
- code/branches/kicklib2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib2
- Property svn:mergeinfo changed
/code/branches/kicklib merged: 7940-7948,7950-7951,7953,7956-7957,7959-7961,7964-7965,7967-7969,7971,7973-7974
- Property svn:mergeinfo changed
-
code/branches/kicklib2/src/libraries/util/Exception.cc
r7401 r8283 95 95 throw; 96 96 } 97 catch (const CEGUI::Exception& ex) 98 { 99 return GeneralException(ex.getMessage().c_str(), ex.getLine(), 100 ex.getFileName().c_str(), ex.getName().c_str()).getDescription(); 101 } 97 102 catch (const std::exception& ex) 98 103 { 99 104 return ex.what(); 100 }101 catch (const CEGUI::Exception& ex)102 {103 #if CEGUI_VERSION_MAJOR == 0 && CEGUI_VERSION_MINOR < 6104 return GeneralException(ex.getMessage().c_str()).getDescription();105 #else106 return GeneralException(ex.getMessage().c_str(), ex.getLine(),107 ex.getFileName().c_str(), ex.getName().c_str()).getDescription();108 #endif109 105 } 110 106 catch (...)
Note: See TracChangeset
for help on using the changeset viewer.