Initial Commit
[packages] / xemacs-packages / jde / java / src / jde / debugger / JDEException.java
1 package jde.debugger;
2
3 /**
4  * JDEException.java
5  * <p>
6  * This is the standard exception raised whenever something wrong happens...
7  * The only thing worth mentioning is that the message is a description of
8  * what went wrong.
9  * <p>
10  * Created: Fri Jul  9 10:55:21 1999
11  * 
12  * @author Amit Kumar
13  * @since 0.1
14  * @version $Revision: 1.2 $
15  */
16
17 public class JDEException extends Exception implements Protocol {
18
19   final String message;
20     
21   public JDEException(String str) {
22     super(str);
23     this.message = str;
24   }
25
26   public String getMessage() { return message; }
27
28 } // JDEException
29
30 /*
31  * $Log: JDEException.java,v $
32  * Revision 1.2  2003/01/08 06:53:38  paulk
33  * Integrate Petter Mahlen's updates.
34  *
35  */
36
37 // End of JDEException