I\'ve been doing a lot of research about handling errors with Qt/C++ and I\'m still as lost as when I started. Maybe I\'m looking for an easy way out (like other languages p
You can put a catch (...) in or around main() Here's around:
int main() try { ... } catch (std::exception & e) { // do something with what... } catch (...) { // someone threw something undecypherable }