package org.easy.util.ex;
/*********************************************************************
*
* A listener of Exception events.
*
* @author
* <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
* @version
* 1998-12-05
*********************************************************************/
public interface ExceptionListener
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
{
public void threwException ( Object o, Exception ex );
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
}
|