1. /*
  2. * @(#)AWTException.java 1.15 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.awt;
  8. /**
  9. * Signals that an Absract Window Toolkit exception has occurred.
  10. *
  11. * @version 1.15 01/23/03
  12. * @author Arthur van Hoff
  13. */
  14. public class AWTException extends Exception {
  15. /*
  16. * JDK 1.1 serialVersionUID
  17. */
  18. private static final long serialVersionUID = -1900414231151323879L;
  19. /**
  20. * Constructs an instance of <code>AWTException</code> with the
  21. * specified detail message. A detail message is an
  22. * instance of <code>String</code> that describes this particular
  23. * exception.
  24. * @param msg the detail message
  25. * @since JDK1.0
  26. */
  27. public AWTException(String msg) {
  28. super(msg);
  29. }
  30. }