1. /*
  2. * @(#)ClassCircularityError.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.lang;
  11. /**
  12. * Thrown when a circularity has been detected while initializing a class.
  13. *
  14. * @author unascribed
  15. * @version 1.12, 02/02/00
  16. * @since JDK1.0
  17. */
  18. public class ClassCircularityError extends LinkageError {
  19. /**
  20. * Constructs a <code>ClassCircularityError</code> with no detail message.
  21. */
  22. public ClassCircularityError() {
  23. super();
  24. }
  25. /**
  26. * Constructs a <code>ClassCircularityError</code> with the
  27. * specified detail message.
  28. *
  29. * @param s the detail message.
  30. */
  31. public ClassCircularityError(String s) {
  32. super(s);
  33. }
  34. }