Exception: Flyticket::TicketflyError
- Inherits:
-
StandardError
- Object
- StandardError
- Flyticket::TicketflyError
- Defined in:
- lib/flyticket/ticketfly_error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #code ⇒ Object
- #error_message ⇒ Object
-
#initialize(response) ⇒ TicketflyError
constructor
A new instance of TicketflyError.
- #to_s ⇒ Object
Constructor Details
#initialize(response) ⇒ TicketflyError
Returns a new instance of TicketflyError.
5 6 7 |
# File 'lib/flyticket/ticketfly_error.rb', line 5 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
3 4 5 |
# File 'lib/flyticket/ticketfly_error.rb', line 3 def response @response end |
Instance Method Details
#code ⇒ Object
9 10 11 |
# File 'lib/flyticket/ticketfly_error.rb', line 9 def code response['code'] end |
#error_message ⇒ Object
13 14 15 |
# File 'lib/flyticket/ticketfly_error.rb', line 13 def response['codeError'] end |
#to_s ⇒ Object
17 18 19 |
# File 'lib/flyticket/ticketfly_error.rb', line 17 def to_s response.pretty_inspect end |