Exception: Lexile::HTTPError

Inherits:
StandardError
  • 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.



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

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

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



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

def params
  @params
end

#responseObject (readonly)

Returns the value of attribute response.



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

def response
  @response
end

Instance Method Details

#to_sObject



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

def to_s
  "#{self.class.to_s} : #{response.code} #{response.body}"
end