Exception: Cielo::API30::Request::CieloError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cielo/api30/request/cielo_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code, body) ⇒ CieloError

Returns a new instance of CieloError.



7
8
9
10
11
# File 'lib/cielo/api30/request/cielo_error.rb', line 7

def initialize(code, body)
  @code = code
  @body = body
  super("Error [#{code}] #{body}")
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



5
6
7
# File 'lib/cielo/api30/request/cielo_error.rb', line 5

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



5
6
7
# File 'lib/cielo/api30/request/cielo_error.rb', line 5

def code
  @code
end