summaryrefslogtreecommitdiff
path: root/java/EAC/ConnectionException.java
blob: a1f3efab7ab212bf7c9bbd87a880dd02a2a1b6fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 *  Title:        ConnectionException
 *  Description:  An exception class for when an attempt is made to connect
 *                an input where one is already connected, or to add an
 *                output when the maximum number of outputs are already set
 */
package EAC;

public class ConnectionException extends Exception {

  public ConnectionException(String msg) {
    super(msg);
  }
}