001 package org.springframework.richclient.exceptionhandling; 002 003 /** 004 * Logs a throwable but does not notify the user in any way. 005 * Normally it is a bad practice not to notify the user if something goes wrong. 006 * @author Geoffrey De Smet 007 * @since 0.3 008 */ 009 public class SilentExceptionHandler extends AbstractLoggingExceptionHandler { 010 011 /** 012 * Does nothing. 013 */ 014 public void notifyUserAboutException(Thread thread, Throwable throwable) { 015 } 016 017 }