blob: b809b22d63bbfade4c254ec736fe16b7a067b8ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Test JVMTI GetErrorName
public class geterrorname
{
public static native void do_errorname_tests ();
public static void main (String[] args)
{
System.out.println ("JVMTI GetErrorName tests");
do_errorname_tests ();
}
}
|