KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Jt > JtException


1
2
3 package Jt;
4
5
6 /**
7   * Represents Jt Exceptions. This type of exception is generated when an error is detected.
8   */

9
10 public class JtException extends Exception JavaDoc {
11
12 // private String trace;
13

14    public JtException () {}
15
16 /*
17    public void setTrace (String trace) {
18      this.trace = trace;
19    }
20
21    public String getTrace () {
22      return (trace);
23    }
24 */

25
26    public JtException (String JavaDoc s) {
27     super (s);
28    }
29
30 }
31
Popular Tags