On Fri, Nov 20, 2009 at 18:31, Jose Iborra wrote:
This is by design, -fbreak-on-exception breaks on any exception, be it captured or not, even on library code.
I am not sure how readFile is implemented internally, but it probably reads from the file until an eoferror is thrown and then captures it gracefully.
There is another debugger flag, -fbreak-on-error, which only breaks on unhandled exceptions.
Is this what you want ?