KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > lang > UnsatisfiedLinkError


1 /*
2  * @(#)UnsatisfiedLinkError.java 1.21 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package java.lang;
9
10 /**
11  * Thrown if the Java Virtual Machine cannot find an appropriate
12  * native-language definition of a method declared <code>native</code>.
13  *
14  * @author unascribed
15  * @version 1.21, 12/19/03
16  * @see java.lang.Runtime
17  * @since JDK1.0
18  */

19 public
20 class UnsatisfiedLinkError extends LinkageError JavaDoc {
21     /**
22      * Constructs an <code>UnsatisfiedLinkError</code> with no detail message.
23      */

24     public UnsatisfiedLinkError() {
25     super();
26     }
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 JavaDoc s) {
35     super(s);
36     }
37 }
38
Popular Tags