01: package test; 02: 03: public class ReadUseThrow { 04: public void test() { 05: try { 06: 07: } catch (NullPointerException e) { 08: throw e; 09: } 10: } 11: }