import java.lang.Exception; public class ColorControlsException extends Exception { // These aren't used, but they'd be something cool to report, right? :) public static final int TOOLOW = 0; public static final int TOOHIGH = 1; ColorControlsException() { super("Invalid number received"); } }