Exception: Payoneer::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/payoneer/response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code:, body:) ⇒ ResponseError

Returns a new instance of ResponseError.



5
6
7
8
# File 'lib/payoneer/response_error.rb', line 5

def initialize(code:, body:)
  @code = code
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/payoneer/response_error.rb', line 3

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



3
4
5
# File 'lib/payoneer/response_error.rb', line 3

def code
  @code
end