Thrown when too many redirects are sent
[Source]
# File lib/mechanize/redirect_limit_reached_error.rb, line 5 5: def initialize(page, redirects) 6: @page = page 7: @redirects = redirects 8: @response_code = page.code 9: end
Alias for to_s
# File lib/mechanize/redirect_limit_reached_error.rb, line 11 11: def to_s 12: "Maximum redirect limit (#{redirects}) reached" 13: end
[Validate]