class Lightspeed::API::Error

Attributes

response[R]

Public Class Methods

new(message:, response:) click to toggle source
Calls superclass method
# File lib/lightspeed/api/error.rb, line 6
def initialize(message:, response:)
  @response = response
  super(message)
end