/* * Created on Aug 8, 2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package AppletInterface; /** * @author student * * This class is being used for error handling. This is a general stock * trading platform exception. * */ public class StockTradingException extends Exception { /** * This is the constructor for StockTradingException.java */ public StockTradingException() { super(); } /** * This is the constructor for StockTradingException.java */ public StockTradingException(String message) { super(message); } }