Exception: DomoscioRails::ProcessingError

Inherits:
Error
  • Object
show all
Defined in:
lib/domoscio_rails/errors.rb

Overview

ProcessingError from DomoscioRails

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request_url, code, details = {}, body = nil, request_params = {}) ⇒ ProcessingError

Returns a new instance of ProcessingError.



28
29
30
31
32
33
34
35
# File 'lib/domoscio_rails/errors.rb', line 28

def initialize(request_url, code, details = {}, body = nil, request_params = {})
  @request_url = request_url
  @code = code
  @details = details
  @body = body
  @request_params = request_params
  super(message) if message
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



26
27
28
# File 'lib/domoscio_rails/errors.rb', line 26

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



26
27
28
# File 'lib/domoscio_rails/errors.rb', line 26

def code
  @code
end

#detailsObject (readonly)

Returns the value of attribute details.



26
27
28
# File 'lib/domoscio_rails/errors.rb', line 26

def details
  @details
end

#request_paramsObject (readonly)

Returns the value of attribute request_params.



26
27
28
# File 'lib/domoscio_rails/errors.rb', line 26

def request_params
  @request_params
end

#request_urlObject (readonly)

Returns the value of attribute request_url.



26
27
28
# File 'lib/domoscio_rails/errors.rb', line 26

def request_url
  @request_url
end

Instance Method Details

#messageObject



37
38
39
# File 'lib/domoscio_rails/errors.rb', line 37

def message
  @details.message
end