Changeset 87 in pacpusframework for trunk/include/Pacpus/kernel
- Timestamp:
- Mar 27, 2013, 4:38:14 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/DbiteException.h
r86 r87 32 32 * @param what Information about the exception. 33 33 */ 34 DbiteException(const std::string& what) 35 : mWhat(what) 36 { 37 } 34 DbiteException(const std::string& what); 38 35 39 36 /** Dtor of DbiteException. */ 40 virtual ~DbiteException() throw() 41 { 42 } 37 virtual ~DbiteException() throw(); 38 43 39 44 40 /** Get more information about the error. 45 41 * @return Message containing information about the error. 46 42 */ 47 virtual const char* what() const throw() 48 { 49 return mWhat.c_str(); 50 } 43 virtual const char* what() const throw(); 44 51 45 52 46 private:
Note:
See TracChangeset
for help on using the changeset viewer.