1. /*
  2. * @(#)LinkageError.java 1.10 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.lang;
  11. /**
  12. * Subclasses of <code>LinkageError</code> indicate that a class has
  13. * some dependency on another class; however, the latter class has
  14. * incompatibly changed after the compilation of the former class.
  15. *
  16. *
  17. * @author Frank Yellin
  18. * @version 1.10, 02/02/00
  19. * @since JDK1.0
  20. */
  21. public
  22. class LinkageError extends Error {
  23. /**
  24. * Constructs a <code>LinkageError</code> with no detail message.
  25. */
  26. public LinkageError() {
  27. super();
  28. }
  29. /**
  30. * Constructs a <code>LinkageError</code> with the specified detail
  31. * message.
  32. *
  33. * @param s the detail message.
  34. */
  35. public LinkageError(String s) {
  36. super(s);
  37. }
  38. }