Exception: Ghtk::RequestError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/ghtk/error.rb

Direct Known Subclasses

OrderIdExistError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ RequestError

Returns a new instance of RequestError.



7
8
9
10
# File 'lib/ghtk/error.rb', line 7

def initialize(response)
  @response = response
  super(response['message'])
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/ghtk/error.rb', line 5

def response
  @response
end