1. /*
  2. * @(#)ExceptionListener.java 1.5 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.beans;
  8. /**
  9. * An ExceptionListener is notified of internal exceptions.
  10. *
  11. * @since 1.4
  12. *
  13. * @version 1.5 01/23/03
  14. * @author Philip Milne
  15. */
  16. public interface ExceptionListener {
  17. /**
  18. * This method is called when a recoverable exception has
  19. * been caught.
  20. *
  21. * @param e The exception that was caught.
  22. *
  23. */
  24. public void exceptionThrown(Exception e);
  25. }