package counters; /** * Exception to be thown if a counter’s value has reached * its limit. * * @author Wayne Eberly */ public class LimitReachedException extends Exception { /** * Constructs a LimitReachedException with the specified * message. */ LimitReachedException(String message) { super(message); }; }