Changeset 7960 for code/branches/kicklib/src/libraries/util/Exception.cc
- Timestamp:
- Feb 25, 2011, 3:07:17 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib/src/libraries/util/Exception.cc
r7947 r7960 95 95 throw; 96 96 } 97 catch (const std::exception& ex)98 {99 return ex.what();100 }101 97 catch (const CEGUI::Exception& ex) 102 98 { 103 99 return GeneralException(ex.getMessage().c_str(), ex.getLine(), 104 100 ex.getFileName().c_str(), ex.getName().c_str()).getDescription(); 101 } 102 catch (const std::exception& ex) 103 { 104 return ex.what(); 105 105 } 106 106 catch (...)
Note: See TracChangeset
for help on using the changeset viewer.