ae4bc864b51c94bc9a5911c0112a951a9b90ead8
[mate.git] / tests / Exception2.java
1 package tests;
2
3 public class Exception2 {
4         public static void main(String []args) {
5                 try {
6                         throw new NullPointerException();
7                 } catch (NullPointerException _) {
8                         System.out.printf("NullPointerException\n");
9                 }
10         }
11 }