/** * An exceptions class if the network connection fails * *@author Dan Hawando *@author Josh Vickery *@author Ben Kaiser *@version 1.0 of Octobre 1999 * */ public class ConnectionException extends Exception { public ConnectionException(String status) { super(status); }//ConnectionException(string) }//class ConnectionException