KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > TestException2


1 import java.lang.*;
2
3 public class TestException2 extends Exception JavaDoc
4  {
5         public TestException2() {super(); }
6         public TestException2(String JavaDoc s) {super(s);}
7  }
8     
9
Popular Tags