Class: Dynamicloud::API::RecordError

Inherits:
Object
  • Object
show all
Defined in:
lib/dynamic_api.rb

Overview

This class represents an error from Dynamicloud servers

Author:

  • Eleazar Gomez

Since:

  • 8/25/15

Version:

  • 1.0.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeRecordError

Returns a new instance of RecordError.

Since:

  • 8/25/15



290
291
292
293
# File 'lib/dynamic_api.rb', line 290

def initialize
  @message = ''
  @code = ''
end

Instance Attribute Details

#codeObject

Since:

  • 8/25/15



288
289
290
# File 'lib/dynamic_api.rb', line 288

def code
  @code
end

#messageObject

Since:

  • 8/25/15



288
289
290
# File 'lib/dynamic_api.rb', line 288

def message
  @message
end