Exception: Lightspeed::API::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Lightspeed::API::Error
- Defined in:
- lib/lightspeed/api/error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message:, response:) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message:, response:) ⇒ Error
Returns a new instance of Error.
6 7 8 9 |
# File 'lib/lightspeed/api/error.rb', line 6 def initialize(message:, response:) @response = response super() end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
4 5 6 |
# File 'lib/lightspeed/api/error.rb', line 4 def response @response end |