scijava-common
scijava-common copied to clipboard
ThreadService eats runtime exceptions
I was just trying some wait
/notify
logic on a thread launched via ThreadService.run
, and my runtime exception got eaten by this block.
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?