hi,

I 'm trying to catch all the exceptions to log every problem encounter in a 
program, but i cannot catch exceptions from the QApplication.exec() method.

for example:

try{
        ....
        QApplication.exec();
  }
catch (Throwable t) {
        LOGGER.logp(Level.SEVERE, "SilmGui", "main(String[])", "Excepción", t);
}

is not working if some exception if throw from some slot function.

Is there any way to catch exceptions from QApplication in order to log these 
exceptions?
_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to