package fauxExchange; /** * This Exception is thrown when a match is made that meets the Stop * trade exception */ class TradeClosedException extends Exception { public TradeClosedException (){ super(); } public TradeClosedException (String msg){ super(msg); } }