1 package test;2 3 public class ReadUseThrow {4 public void test() {5 try {6 7 } catch (NullPointerException e) {8 throw e;9 }10 }11 }