net.sourceforge.jfacefactories.util
Class DefaultExceptionHandler

java.lang.Object
  extended by net.sourceforge.jfacefactories.util.DefaultExceptionHandler
All Implemented Interfaces:
IExceptionHandler

public class DefaultExceptionHandler
extends java.lang.Object
implements IExceptionHandler

Default implementation of interface simply asserts out or if assertions are off throws a runtime exception.

Since:
1.0
Author:
MikeE

Constructor Summary
DefaultExceptionHandler()
           
 
Method Summary
 void handleException(java.lang.Throwable exception)
          Must handle any exception in a thread-safe manner - note that this might be called off the GUI thread.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultExceptionHandler

public DefaultExceptionHandler()
Method Detail

handleException

public void handleException(java.lang.Throwable exception)
Description copied from interface: IExceptionHandler
Must handle any exception in a thread-safe manner - note that this might be called off the GUI thread.

Specified by:
handleException in interface IExceptionHandler