Changeset 12479
- Timestamp:
- 06/20/12 14:44:41 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/shared/Exceptions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp ¶
r12078 r12479 20 20 } 21 21 22 ErrorException::ErrorException( string what_file,string what_function,int what_line,stringwhat_arg){22 ErrorException::ErrorException(const string& what_file, const string& what_function,int what_line, const string& what_arg){ 23 23 24 24 what_str=what_arg; -
TabularUnified issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h ¶
r12079 r12479 24 24 public: 25 25 ErrorException(const string &what_arg); //for windows 26 ErrorException( string what_file,string what_function,int what_line,stringwhat_arg);//UNIX26 ErrorException(const string& what_file,const string& what_function,int what_line,const string& what_arg);//UNIX 27 27 ~ErrorException() throw(); 28 28 virtual const char *what() const throw();
Note:
See TracChangeset
for help on using the changeset viewer.