01: package java.lang;
02:
03: public class ClassNotFoundException extends Exception {
04: public ClassNotFoundException() {
05: }
06:
07: public ClassNotFoundException(String s) {
08: }
09:
10: public ClassNotFoundException(String s, Throwable ex) {
11: }
12:
13: public Throwable getException() {
14: }
15:
16: public Throwable getCause() {
17: }
18: }
|