# File lib/ramaze/contrib/sequel/form_field.rb, line 116
  def each_error(&block)
    return unless show_errors

    this.validate if this.errors.empty?
    this.errors[field].first(show_errors).each(&block)
  end