1. /*
  2. * @(#)AWTException.java 1.13 00/02/02
  3. *
  4. * Copyright 1995-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.awt;
  11. /**
  12. * Signals that an Absract Window Toolkit exception has occurred.
  13. *
  14. * @version 1.13 02/02/00
  15. * @author Arthur van Hoff
  16. */
  17. public class AWTException extends Exception {
  18. /*
  19. * JDK 1.1 serialVersionUID
  20. */
  21. private static final long serialVersionUID = -1900414231151323879L;
  22. /**
  23. * Constructs an instance of <code>AWTException</code> with the
  24. * specified detail message. A detail message is an
  25. * instance of <code>String</code> that describes this particular
  26. * exception.
  27. * @param msg the detail message
  28. * @since JDK1.0
  29. */
  30. public AWTException(String msg) {
  31. super(msg);
  32. }
  33. }