Re: Catching Exceptions from Threads in REPL

2013-09-04 Thread Neale Swinnerton
Have you experimented with setting a default uncaught exception handler? See http://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html#setDefaultUncaughtExceptionHandler(java.lang.Thread.UncaughtExceptionHandler) *Neale Swinnerton* {t: @sw1nn , w: sw1nn.com }

Catching Exceptions from Threads in REPL

2013-09-04 Thread JvJ
I'm working on a multithreaded program, and debugging in the repl is very hard. Every time an exception occurs, the thread either shuts down or deals with it in some other way. Is there a way I can get the REPL to intercept the exception and display it? -- -- You received this message beca