1 import java
.lang
.reflect
.*;
4 public static void meth () throws NullPointerException
6 throw new NullPointerException();
9 public static void main(String
[] args
) throws Throwable
11 Class k
= pr8415
.class;
12 Method m
= k
.getMethod ("meth", new Class
[0]);
13 System
.out
.println(m
);