I set thread's uncaughtExceptionHandler as shown in the code below but it does not work when a HibernateException is raised in the thread running. My jvm is 1.6.0_26. Any clue?

this.executor = Executors.newSingleThreadScheduledExecutor(new ThreadFactory() 
{
  public Thread newThread(Runnable r)   
  {
    Thread result = Executors.defaultThreadFactory().newThread(r);
    result.setUncaughtExceptionHandler(new UncaughtExceptionHandler() 
    {
       public void uncaughtException(Thread t, Throwable e) {
      logger.error("error occurs while supervior is running", e);
    }
    })
    return result;
  }
});
link|improve this question
the exception may not be happening in the thread? – Jayan Feb 6 at 5:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.