Changeset 2103 for code/trunk/src/util/Exception.h
- Timestamp:
- Nov 2, 2008, 12:22:42 AM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/trunk/src/util
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/trunk/src/util/Exception.h
- Property svn:mergeinfo changed (with no actual effect on merging)
r2096 r2103 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.