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