summaryrefslogtreecommitdiff
path: root/java/EAC/BoundsException.java
blob: 12010d570b090a8f49e16be9be4d86b0f15e7995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 *  Title:        BoundsException
 *  Description:  An exception class for when graphical objects are positioned
 *                partially out of their container's boundaries
 */
package EAC;

public class BoundsException extends Exception {

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