Method: Ubicloud::Error#initialize

Defined in:
lib/ubicloud.rb

#initialize(message, code: nil, body: nil) ⇒ Error

Accept the code and body keyword arguments for metadata related to this error.



22
23
24
25
26
# File 'lib/ubicloud.rb', line 22

def initialize(message, code: nil, body: nil)
  super(message)
  @code = code
  @body = body
end