naga.eventmachine
Interface ExceptionObserver
public interface ExceptionObserver
Implemented by observers of event exceptions.
The notifyExceptionThrown will be called synchronously
by the event machine if executing an event throws
an exception.
- Author:
- Christoffer Lerno
Method Summary |
void |
notifyExceptionThrown(java.lang.Throwable e)
Notify the observer that an exception has been thrown. |
DEFAULT
static final ExceptionObserver DEFAULT
notifyExceptionThrown
void notifyExceptionThrown(java.lang.Throwable e)
- Notify the observer that an exception has been thrown.
- Parameters:
e
- the exception that was thrown.