class Grape::Exceptions::ValidationErrors

def each

def each
  errors.each_pair do |attribute, errors|
    errors.each do |error|
      yield attribute, error
    end
  end
end