Tagged Questions
8
votes
4answers
1k views
How to properly catch RuntimeExceptions from Executors?
Say that I have the following code:
ExecutorService executor = Executors.newSingleThreadExecutor();
executor.execute(myRunnable);
Now, if myRunnable throws a RuntimeExcpetion, how can I catch it? ...