1. /*
  2. * @(#)UnsatisfiedLinkError.java 1.17 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 if the Java Virtual Machine cannot find an appropriate
  10. * native-language definition of a method declared <code>native</code>.
  11. *
  12. * @author unascribed
  13. * @version 1.17, 11/29/01
  14. * @see java.lang.Runtime
  15. * @since JDK1.0
  16. */
  17. public
  18. class UnsatisfiedLinkError extends LinkageError {
  19. /**
  20. * Constructs an <code>UnsatisfiedLinkError</code> with no detail message.
  21. */
  22. public UnsatisfiedLinkError() {
  23. super();
  24. }
  25. /**
  26. * Constructs an <code>UnsatisfiedLinkError</code> with the
  27. * specified detail message.
  28. *
  29. * @param s the detail message.
  30. */
  31. public UnsatisfiedLinkError(String s) {
  32. super(s);
  33. }
  34. }