Changeset 117 in pacpusframework for trunk/src/PacpusLib/PacpusApplication.cpp


Ignore:
Timestamp:
06/25/13 13:50:46 (11 years ago)
Author:
Marek Kurdej
Message:

Removed FileLib dependency in PacpusLib (using PacpusException instead of DbiteException).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/PacpusLib/PacpusApplication.cpp

    r115 r117  
    99/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
    1010
    11 #include <Pacpus/kernel/DbiteException.h>
    1211#include <Pacpus/kernel/Log.h>
    1312#include <Pacpus/kernel/PacpusApplication.h>
     13#include <Pacpus/kernel/PacpusException.h>
    1414
    1515using namespace pacpus;
     
    8383    try {
    8484        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());
    8787    } catch(std::exception & e) {
    8888        LOG_ERROR("std::exception thrown:" << e.what());
Note: See TracChangeset for help on using the changeset viewer.