Exception: Mechanize::RedirectNotGetOrHeadError

Inherits:
Error
  • Object
show all
Defined in:
lib/mechanize/redirect_not_get_or_head_error.rb

Overview

Raised when a POST, PUT, or DELETE request results in a redirect see RFC 2616 10.3.2, 10.3.3 www.ietf.org/rfc/rfc2616.txt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(page, verb) ⇒ RedirectNotGetOrHeadError

Returns a new instance of RedirectNotGetOrHeadError.



8
9
10
11
12
13
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 8

def initialize(page, verb)
  @page           = page
  @verb           = verb
  @uri            = page.uri
  @response_code  = page.code
end

Instance Attribute Details

#pageObject (readonly)

Returns the value of attribute page.



7
8
9
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 7

def page
  @page
end

#response_codeObject (readonly)

Returns the value of attribute response_code.



7
8
9
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 7

def response_code
  @response_code
end

#uriObject (readonly)

Returns the value of attribute uri.



7
8
9
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 7

def uri
  @uri
end

#verbObject (readonly)

Returns the value of attribute verb.



7
8
9
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 7

def verb
  @verb
end

Instance Method Details

#to_sObject Also known as: inspect



15
16
17
18
# File 'lib/mechanize/redirect_not_get_or_head_error.rb', line 15

def to_s
  method = @verb.to_s.upcase
  "#{@response_code} redirect received after a #{method} request"
end