scijava-common icon indicating copy to clipboard operation
scijava-common copied to clipboard

ThreadService eats runtime exceptions

Open hinerm opened this issue 10 years ago • 1 comments

I was just trying some wait/notify logic on a thread launched via ThreadService.run, and my runtime exception got eaten by this block.

hinerm avatar Feb 04 '15 19:02 hinerm

I am skeptical. A try/finally block does not eat any exceptions in Java—rather, they are thrown at the conclusion of the finally block. Are you sure that block of code is the culprit?

ctrueden avatar Mar 23 '15 15:03 ctrueden