Changeset 3586 in Sophya for trunk/SophyaLib/SysTools
- Timestamp:
- Mar 5, 2009, 2:26:06 PM (17 years ago)
- Location:
- trunk/SophyaLib/SysTools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/cexpre.h
r2598 r3586 20 20 class CExprException : public PException { 21 21 public: 22 explicit CExprException(const char * m) : PException(m) {}23 explicit CExprException(const string& m) : PException(m) {}22 explicit CExprException(const char * m) throw() : PException(m) {} 23 explicit CExprException(const string& m) throw() : PException(m) {} 24 24 }; 25 25 -
trunk/SophyaLib/SysTools/rpneval.h
r2598 r3586 22 22 class RPNExprException : public PException { 23 23 public: 24 explicit RPNExprException(const char * m) : PException(m) {}25 explicit RPNExprException(const string& m) : PException(m) {}24 explicit RPNExprException(const char * m) throw() : PException(m) {} 25 explicit RPNExprException(const string& m) throw() : PException(m) {} 26 26 }; 27 27 -
trunk/SophyaLib/SysTools/zthread.h
r3219 r3586 23 23 class ZThreadExc : public PException { 24 24 public: 25 explicit ZThreadExc(const string& m, int id=0) : PException(m,id) {} 25 explicit ZThreadExc(const string& m, int id=0) throw() : PException(m,id) {} 26 explicit ZThreadExc(const char* m, int id=0) throw() : PException(m,id) {} 26 27 }; 27 28
Note:
See TracChangeset
for help on using the changeset viewer.