class SynergyWholesale::Errors::Error

Attributes

command[R]
response[R]

Public Class Methods

new(message, command, response) click to toggle source
Calls superclass method
# File lib/synergy_wholesale/errors/error.rb, line 7
def self.new(message, command, response)
  @command  = command
  @response = response
  super(message)
end