001         package com.croftsoft.core.lang.ex;
002    
003         /*********************************************************************
004         *
005         * A listener of Exception events.
006         *
007         * @author
008         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
009         * @version
010         *   1998-12-05
011         *********************************************************************/
012    
013         public interface  ExceptionListener
014         //////////////////////////////////////////////////////////////////////
015         //////////////////////////////////////////////////////////////////////
016         {
017    
018         public void  threwException ( Object  o, Exception  ex );
019    
020         //////////////////////////////////////////////////////////////////////
021         //////////////////////////////////////////////////////////////////////
022         }