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 */ 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