1. /*
  2. * @(#)IncompatibleClassChangeError.java 1.15 00/02/02
  3. *
  4. * Copyright 1994-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. * Thrown when an incompatible class change has occurred to some class
  13. * definition. The definition of some class, on which the currently
  14. * executing method depends, has since changed.
  15. *
  16. * @author unascribed
  17. * @version 1.15, 02/02/00
  18. * @since JDK1.0
  19. */
  20. public
  21. class IncompatibleClassChangeError extends LinkageError {
  22. /**
  23. * Constructs an <code>IncompatibleClassChangeError</code> with no
  24. * detail message.
  25. */
  26. public IncompatibleClassChangeError () {
  27. super();
  28. }
  29. /**
  30. * Constructs an <code>IncompatibleClassChangeError</code> with the
  31. * specified detail message.
  32. *
  33. * @param s the detail message.
  34. */
  35. public IncompatibleClassChangeError(String s) {
  36. super(s);
  37. }
  38. }