Recently I used a Task
in one of my programs. Basically one can say that the code included in the Task
is executed in another thread. An exception was thrown in that thread, however I never noticed that, because Eclipse didn't show it (at least not in the console).
So, how to make sure I am informed about the exceptions of all threads?
Thanks for any hint on this!
Update: I am wondering if there is a way that does not involve code modifications / adaptions - because one can easily forget that. Any setting in Eclipse for that?