blob: df7262679bba6b433c396a3e469e591ca2aef217 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Test a `throw' across a libffi call.
import java.lang.reflect.*;
public class invokethrow
{
public static void doit () throws Throwable
{
throw new Throwable ("hi!");
}
public static void main (String[] args)
{
Class k = invokethrow.class;
try
{
Class[] noargs = new Class[0];
Method m = k.getMethod ("doit", noargs);
m.invoke (null, null);
}
catch (InvocationTargetException x1)
{
System.out.println (x1.getTargetException ().getMessage ());
}
catch (Throwable _)
{
}
}
}
|