Exception: Flyticket::TicketflyError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/flyticket/ticketfly_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#responseObject (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

#codeObject



9
10
11
# File 'lib/flyticket/ticketfly_error.rb', line 9

def code
  response['code']
end

#error_messageObject



13
14
15
# File 'lib/flyticket/ticketfly_error.rb', line 13

def error_message
  response['codeError']
end

#to_sObject



17
18
19
# File 'lib/flyticket/ticketfly_error.rb', line 17

def to_s
  response.pretty_inspect
end