- Timestamp:
- Nov 7, 2013, 2:18:52 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/PacpusApplication.cpp
r184 r215 9 9 /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved. 10 10 11 #include <boost/exception/diagnostic_information.hpp> 12 #include <boost/exception/exception.hpp> 11 13 #include <csignal> 12 14 #include <Pacpus/kernel/Log.h> … … 90 92 (void) e; // unused 91 93 LOG_ERROR("PacpusException thrown:" << e.what()); 94 } catch(boost::exception & e) { 95 (void) e; // unused 96 LOG_ERROR("boost::exception thrown:" << boost::diagnostic_information(e)); 92 97 } catch(std::exception & e) { 93 98 (void) e; // unused
Note:
See TracChangeset
for help on using the changeset viewer.