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