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