Condition.prototype.thenInvalid = function thenInvalid() {
  return this.then(function invalid(value, key, executor) {
    executor.invalid();
  });
};