com.codexombie.jspasm
Interface IExceptionHandler

All Known Implementing Classes:
BasicExceptionHandler

public interface IExceptionHandler

Interface to be implemented when developing an Exception Handler. Exception handlers are used for logging exceptions thrown during the running of the Engine. Exception handlers must have public no-argument constructors.

Author:
Pete Ford, May 31, 2005 ©Pete Ford & CodeXombie.com 2005

Method Summary
 void handleException(java.lang.Exception ex)
           Called by the Engine when an exception occurs during normal running.
 

Method Detail

handleException

void handleException(java.lang.Exception ex)

Called by the Engine when an exception occurs during normal running.

Parameters:
ex - The Exception to report.