626364656667686970
public CountFilter (int count) throws InvalidCountException { // Check for valid count if (count < 1) throw new InvalidCountException (count); _count = count; }