Changeset 2103 for code/trunk/src/util/Exception.cc
- 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.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
r2096 r2103 38 38 { 39 39 Exception::Exception(const std::string& description, int lineNumber, 40 const char* file Name, const char* functionName)40 const char* filename, const char* functionName) 41 41 : description_(description) 42 42 , lineNumber_(lineNumber) 43 43 , functionName_(functionName) 44 , file Name_(fileName)44 , filename_(filename) 45 45 { } 46 46 … … 49 49 , lineNumber_(0) 50 50 , functionName_("") 51 , file Name_("")51 , filename_("") 52 52 { } 53 53 … … 60 60 fullDesc << this->getTypeName() << "_EXCEPTION"; 61 61 62 if (this->file Name_ != "")62 if (this->filename_ != "") 63 63 { 64 fullDesc << " in " << this->file Name_;64 fullDesc << " in " << this->filename_; 65 65 if (this->lineNumber_) 66 66 fullDesc << "(" << this->lineNumber_ << ")";
Note: See TracChangeset
for help on using the changeset viewer.