Exception: Lexile::HTTPError
- Inherits:
-
StandardError
- Object
- StandardError
- Lexile::HTTPError
- Defined in:
- lib/lexile/errors.rb
Direct Known Subclasses
AuthenticationFailed, BadRequest, NotFound, RateLimited, ServerError, Unavailable, UnknownStatusCode
Instance Attribute Summary collapse
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, params = {}) ⇒ HTTPError
constructor
A new instance of HTTPError.
- #to_s ⇒ Object
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
#params ⇒ Object (readonly)
Returns the value of attribute params.
7 8 9 |
# File 'lib/lexile/errors.rb', line 7 def params @params end |
#response ⇒ Object (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_s ⇒ Object
15 16 17 |
# File 'lib/lexile/errors.rb', line 15 def to_s "#{self.class.to_s} : #{response.code} #{response.body}" end |