1 /*2 * @(#)ExceptionListener.java 1.6 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 package java.beans;8 9 /**10 * An ExceptionListener is notified of internal exceptions. 11 * 12 * @since 1.413 *14 * @version 1.6 12/19/0315 * @author Philip Milne16 */ 17 public interface ExceptionListener { 18 /**19 * This method is called when a recoverable exception has 20 * been caught. 21 *22 * @param e The exception that was caught. 23 * 24 */25 public void exceptionThrown(Exception e); 26 }27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74