Changeset 117 in pacpusframework for trunk/src/PacpusLib/PacpusApplication.cpp
- Timestamp:
- Jun 25, 2013, 1:50:46 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/PacpusApplication.cpp
r115 r117 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) {86 LOG_ERROR(" DbiteException thrown:" << e.what());85 } catch(PacpusException & e) { 86 LOG_ERROR("PacpusException thrown:" << e.what()); 87 87 } catch(std::exception & e) { 88 88 LOG_ERROR("std::exception thrown:" << e.what());
Note:
See TracChangeset
for help on using the changeset viewer.