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