KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > ConstructorThrows


1 package test;
2
3 import javax.swing.text.BadLocationException JavaDoc;
4
5 public class ConstructorThrows {
6     
7     public ConstructorThrows() throws NullPointerException JavaDoc, BadLocationException JavaDoc {
8     }
9     
10 }
11
Popular Tags