Exception: RestClient::Redirect

Inherits:
Exception
  • Object
show all
Defined in:
lib/restclient/exceptions.rb

Overview

A redirect was encountered; caught by execute to retry with the new url.

Constant Summary collapse

ErrorMessage =
"Redirect"

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Exception

#message

Constructor Details

#initialize(url) ⇒ Redirect

Returns a new instance of Redirect.



28
29
30
# File 'lib/restclient/exceptions.rb', line 28

def initialize(url)
	@url = url
end

Instance Attribute Details

#urlObject

Returns the value of attribute url.



27
28
29
# File 'lib/restclient/exceptions.rb', line 27

def url
  @url
end