Exception: GatherContent::Error::RequestError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gather_content/error/request_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ RequestError

Returns a new instance of RequestError.



6
7
8
9
10
11
# File 'lib/gather_content/error/request_error.rb', line 6

def initialize(response)
  @response = response
  @status = response.status

  super(parse_message(response))
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/gather_content/error/request_error.rb', line 4

def response
  @response
end

#statusObject (readonly)

Returns the value of attribute status.



4
5
6
# File 'lib/gather_content/error/request_error.rb', line 4

def status
  @status
end