multex
Interface AwtExceptionHandler


public interface AwtExceptionHandler

Used for handling otherwise uncaught RuntimeException / Error in AWT/Swing. Interface for the signature of the handle-method called by the private method handleException of java.awt.EventDispatchThread.

See Also:
Awt.setAwtExceptionHandlerClass(AwtExceptionHandler), JGuru discussion

Method Summary
 void handle(java.lang.Throwable i_throwable)
          Called by AWT/Swing when a RuntimeException / Error is propagated to the EventDispatchThread.
 

Method Detail

handle

public void handle(java.lang.Throwable i_throwable)
Called by AWT/Swing when a RuntimeException / Error is propagated to the EventDispatchThread.

Parameters:
i_throwable - the thrown Throwable