Exception: Telleroo::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Telleroo::Error
- Defined in:
- lib/telleroo/error.rb
Overview
Handle Errors returned from API
Direct Known Subclasses
Defined Under Namespace
Classes: ApplicationError, ClientError, NotAcceptable, RateLimit, ServerError, ServiceUnavailable, Unauthorized, Unprocessable
Instance Attribute Summary collapse
-
#http_headers ⇒ Object
readonly
Returns the value of attribute http_headers.
Instance Method Summary collapse
-
#initialize(message, http_headers) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message, http_headers) ⇒ Error
Returns a new instance of Error.
6 7 8 9 |
# File 'lib/telleroo/error.rb', line 6 def initialize(, http_headers) @http_headers = http_headers super() end |
Instance Attribute Details
#http_headers ⇒ Object (readonly)
Returns the value of attribute http_headers.
4 5 6 |
# File 'lib/telleroo/error.rb', line 4 def http_headers @http_headers end |