class UrlFetcher::CircularRedirect

Attributes

url[R]

Public Class Methods

new(url) click to toggle source
# File lib/url_fetcher/errors.rb, line 30
def initialize(url)
  @url = url
end

Public Instance Methods

to_s() click to toggle source
# File lib/url_fetcher/errors.rb, line 34
def to_s
  "#{url} has a redirect loop."
end