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