01: package test; 02: 03: import javax.swing.text.BadLocationException; 04: 05: public class ConstructorThrows { 06: 07: public ConstructorThrows() throws NullPointerException, 08: BadLocationException { 09: } 10: 11: }