public void I_want_to_throw_the_first_exception_from_a_collection()
 {
     var secondVariable = 45;
     var validator = new Validator();
     validator.CheckThat(() => _stringToTest).HasNoSpaces().LengthLessThan(4);
     validator.CheckThat(() => secondVariable).IsBetween(56, 100);
     validator.ThrowFirst();
 }