# File lib/grape/exceptions/validation_errors.rb, line 20
      def each
        errors.each_pair do |attribute, errors|
          errors.each do |error|
            yield attribute, error
          end
        end
      end