Revision 20098 trunk/libraries/libIverUtiles/src/com/iver/utiles/exceptionHandling/ExceptionListener.java

View differences:

ExceptionListener.java
40 40
 */
41 41
package com.iver.utiles.exceptionHandling;
42 42

  
43

  
43
/**
44
 * <p><code>ExceptionListener</code> defines the way to notify a listener
45
 *  that an error or exception throwable by the Java Virtual Machine
46
 *  has been produced.</p>
47
 * 
48
 * @see Throwable
49
 */
44 50
public interface ExceptionListener {
51
	/**
52
	 * <p>Notifies a listener that an error or exception throwable by the Java Virtual Machine
53
     *  has been produced.</p> 
54
	 * 
55
	 * @param t an error or exception in the Java language
56
	 */
45 57
	public void exceptionThrown(Throwable t);
46 58
}

Also available in: Unified diff