Changeset 2101 for code/branches/objecthierarchy/src/util/Exception.h
- Timestamp:
- Nov 2, 2008, 12:09:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/util/Exception.h
r1810 r2101 67 67 68 68 Exception(const std::string& description, int lineNumber, 69 const char* file Name, const char* functionName);69 const char* filename, const char* functionName); 70 70 Exception(const std::string& description); 71 71 … … 87 87 int lineNumber_; 88 88 std::string functionName_; 89 std::string file Name_;89 std::string filename_; 90 90 // mutable because "what()" is a const method 91 91 mutable std::string fullDescription_; … … 98 98 public: 99 99 SpecificException(const std::string& description, int lineNumber, 100 const char* file Name, const char* functionName)101 : Exception(description, lineNumber, file Name, functionName)100 const char* filename, const char* functionName) 101 : Exception(description, lineNumber, filename, functionName) 102 102 { 103 103 // let the catcher decide whether to display the message below level 4
Note: See TracChangeset
for help on using the changeset viewer.