Debugging in Eclipse
Hi,
I don't know how to overcome an annoying thing of the Eclipse debugger. When my program crashes, normally, when you run it in debug mode, the program stops at the place where it will crash. But i use finally clauses in my code, and when my program runs in debug mode and it is going to crash at a certain point, the debugger will jump to a finally clause, somewhere else in the code. That's a problem, because in that case i can't see what was the exact situation at the moment and place the program crashed.
What can I do about it?

