I have implemented a try catch with
Qt Code:
  1. catch (exception & e)
  2. { Q_debug()<< "Standard exception: "<< e.what()";
  3. }
To copy to clipboard, switch view to plain text mode 
But my program crash and I have not reach the catch line...
(Only I can detect some simple errors, but in example when save a stl::vector with less information that expected, my app simply chrash)
Any idea ?
Is there any more I can write to have more control on errors ?
The errors I want to control are mainly related with c++ code, not on QT objects
Thanks