/** * This class is part of project that implements Aspectual Components * * Author: Predrag Petkovic, predrag@ccs.neu.edu * Northeastern University * */ package edu.neu.ccs.aspects; public class ConnectingException extends Exception { public ConnectingException() { super(); } public ConnectingException(String s) { super(s); } }