package org.easy.util.ex;
/*********************************************************************
* Handles Exception events.
*
* <P>
*
* @author
* <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
* @version
* 1999-12-23
*********************************************************************/
public interface ExceptionHandler
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{
/*********************************************************************
* @return
*
* Returns false if the Exception was not handled.
*********************************************************************/
public boolean handleException ( Exception ex, Object o );
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}
|