Exception: TicketingHub::Error
- Inherits:
-
StandardError
- Object
- StandardError
- TicketingHub::Error
- Defined in:
- lib/ticketing_hub/error.rb
Direct Known Subclasses
BadGateway, BadRequest, Forbidden, Gone, InternalServerError, NotAcceptable, NotFound, NotImplemented, ServiceUnavailable, Unauthorized, UnprocessableEntity
Instance Attribute Summary collapse
-
#response ⇒ Object
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response = nil) ⇒ Error
constructor
A new instance of Error.
- #response_body ⇒ Object
Constructor Details
#initialize(response = nil) ⇒ Error
Returns a new instance of Error.
5 6 7 |
# File 'lib/ticketing_hub/error.rb', line 5 def initialize response=nil @response = response end |
Instance Attribute Details
#response ⇒ Object
Returns the value of attribute response.
3 4 5 |
# File 'lib/ticketing_hub/error.rb', line 3 def response @response end |
Instance Method Details
#response_body ⇒ Object
9 10 11 |
# File 'lib/ticketing_hub/error.rb', line 9 def response_body @response[:body] end |