wyvern.lib.event
Interface EventErrorHandler


public interface EventErrorHandler

Interface that supports being notified when your own code throws an exception in one of your EventListener handler methods. If your EventListener class also implements the EventErrorHandler interface, you'll be notified via the handleError method whenever your code throws an exception.

Version:
1.0, Oct 28, 2003
Author:
Steve Yegge

Method Summary
 void handleError(java.lang.Throwable t)
          An exception happened in your code.
 

Method Detail

handleError

public void handleError(java.lang.Throwable t)
An exception happened in your code.

Parameters:
t - the exception, which you can use for debugging your event handler code