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

Field Summary
static ExceptionObserver DEFAULT
           
 
Method Summary
 void notifyExceptionThrown(java.lang.Throwable e)
          Notify the observer that an exception has been thrown.
 

Field Detail

DEFAULT

static final ExceptionObserver DEFAULT
Method Detail

notifyExceptionThrown

void notifyExceptionThrown(java.lang.Throwable e)
Notify the observer that an exception has been thrown.

Parameters:
e - the exception that was thrown.