Exception: Lexile::HTTPError

Inherits:
Error
  • Object
show all
Defined in:
lib/lexile/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response, params = {}) ⇒ HTTPError

Returns a new instance of HTTPError.



10
11
12
13
14
# File 'lib/lexile/errors.rb', line 10

def initialize(response, params = {})
  @response = response
  @params = params
  super(response)
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



8
9
10
# File 'lib/lexile/errors.rb', line 8

def params
  @params
end

#responseObject (readonly)

Returns the value of attribute response.



7
8
9
# File 'lib/lexile/errors.rb', line 7

def response
  @response
end

Instance Method Details

#composed_messageObject



16
17
18
# File 'lib/lexile/errors.rb', line 16

def composed_message
  "#{self.class.to_s} request_params: #{@params} response_status_code: #{@response.code} response_headers:#{@response.headers}"
end

#to_sObject



20
21
22
# File 'lib/lexile/errors.rb', line 20

def to_s
  composed_message
end