package jde.debugger; /** * JDEException.java *

* This is the standard exception raised whenever something wrong happens... * The only thing worth mentioning is that the message is a description of * what went wrong. *

* Created: Fri Jul 9 10:55:21 1999 * * @author Amit Kumar * @since 0.1 * @version $Revision: 1.2 $ */ public class JDEException extends Exception implements Protocol { final String message; public JDEException(String str) { super(str); this.message = str; } public String getMessage() { return message; } } // JDEException /* * $Log: JDEException.java,v $ * Revision 1.2 2003/01/08 06:53:38 paulk * Integrate Petter Mahlen's updates. * */ // End of JDEException