KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > TestException


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