Changeset 3671 in Sophya for trunk/AddOn/TAcq/racquproc.cc
- Timestamp:
- Nov 13, 2009, 11:54:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AddOn/TAcq/racquproc.cc
r3635 r3671 123 123 } 124 124 } 125 catch ( PException& exc) {126 cout << " DataProc::run()/catched PException " << exc.Msg() << endl;125 catch (std::exception& exc) { 126 cout << " DataProc::run()/catched std::exception " << exc.what() << endl; 127 127 setRC(3); 128 128 return; … … 242 242 } 243 243 } 244 catch ( PException& exc) {245 cout << " DataProc 2C::run()/catched PException " << exc.Msg() << endl;244 catch (std::exception& exc) { 245 cout << " DataProc::run()/catched std::exception " << exc.what() << endl; 246 246 setRC(3); 247 247 return; … … 360 360 } 361 361 } 362 catch ( PException& exc) {363 cout << " DataProc FFT2C::run()/catched PException " << exc.Msg() << endl;362 catch (std::exception& exc) { 363 cout << " DataProc::run()/catched std::exception " << exc.what() << endl; 364 364 setRC(3); 365 365 return;
Note:
See TracChangeset
for help on using the changeset viewer.