Exception: DomoscioViz::ProcessingError

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

Overview

ProcessingError from Domoscio_viz

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.



20
21
22
23
# File 'lib/domoscio_viz/errors.rb', line 20

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

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



19
20
21
# File 'lib/domoscio_viz/errors.rb', line 19

def body
  @body
end

#codeObject (readonly)

Returns the value of attribute code.



19
20
21
# File 'lib/domoscio_viz/errors.rb', line 19

def code
  @code
end

#detailsObject (readonly)

Returns the value of attribute details.



19
20
21
# File 'lib/domoscio_viz/errors.rb', line 19

def details
  @details
end

#request_paramsObject (readonly)

Returns the value of attribute request_params.



19
20
21
# File 'lib/domoscio_viz/errors.rb', line 19

def request_params
  @request_params
end

#request_urlObject (readonly)

Returns the value of attribute request_url.



19
20
21
# File 'lib/domoscio_viz/errors.rb', line 19

def request_url
  @request_url
end

Instance Method Details

#messageObject



24
# File 'lib/domoscio_viz/errors.rb', line 24

def message; @details.message; end