Changeset 116 in pacpusframework for trunk/src/FileLib
- Timestamp:
- Jun 25, 2013, 1:44:25 PM (11 years ago)
- Location:
- trunk/src/FileLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FileLib/CMakeLists.txt
r103 r116 46 46 ${PACPUS_DEPENDENCIES_LIB} 47 47 PacpusLib 48 49 48 ) 50 49 -
trunk/src/FileLib/src/DbiteException.cpp
r91 r116 11 11 12 12 DbiteException::DbiteException(const std::string& what) 13 : mWhat(what)13 : PacpusException(what) 14 14 { 15 15 } … … 18 18 { 19 19 } 20 21 const char* DbiteException::what() const throw()22 {23 return mWhat.c_str();24 }
Note:
See TracChangeset
for help on using the changeset viewer.