1. /*
  2. * @(#)NoSuchFieldException.java 1.9 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. * Signals that the class doesn't have a field of a specified name.
  10. *
  11. * @author unascribed
  12. * @version 1.9, 11/29/01
  13. * @since JDK1.1
  14. */
  15. public class NoSuchFieldException extends Exception {
  16. /**
  17. * Constructor.
  18. */
  19. public NoSuchFieldException() {
  20. super();
  21. }
  22. /**
  23. * Constructor with a detail message.
  24. */
  25. public NoSuchFieldException(String s) {
  26. super(s);
  27. }
  28. }