1. /*
  2. * @(#)AWTError.java 1.14 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. * Thrown when a serious Abstract Window Toolkit error has occurred.
  10. *
  11. * @version 1.14 01/23/03
  12. * @author Arthur van Hoff
  13. */
  14. public class AWTError extends Error {
  15. /*
  16. * JDK 1.1 serialVersionUID
  17. */
  18. private static final long serialVersionUID = -1819846354050686206L;
  19. /**
  20. * Constructs an instance of <code>AWTError</code> with the specified
  21. * detail message.
  22. * @param msg the detail message.
  23. * @since JDK1.0
  24. */
  25. public AWTError(String msg) {
  26. super(msg);
  27. }
  28. }