Changeset 162 in pacpusframework for branches/2.0-beta1/src/PacpusLib/PacpusApplication.cpp
- Timestamp:
- Aug 1, 2013, 4:46:07 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/PacpusLib/PacpusApplication.cpp
r141 r162 9 9 /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved. 10 10 11 #include <Pacpus/kernel/DbiteException.h>12 11 #include <Pacpus/kernel/Log.h> 13 12 #include <Pacpus/kernel/PacpusApplication.h> 13 #include <Pacpus/kernel/PacpusException.h> 14 14 15 15 using namespace pacpus; … … 83 83 try { 84 84 return QApplication::notify(receiver, ev); 85 } catch( DbiteException & e) {85 } catch(PacpusException & e) { 86 86 (void) e; // unused 87 LOG_ERROR(" DbiteException thrown:" << e.what());87 LOG_ERROR("PacpusException thrown:" << e.what()); 88 88 } catch(std::exception & e) { 89 89 (void) e; // unused
Note:
See TracChangeset
for help on using the changeset viewer.