class ProcessOut::AuthenticationError

Attributes

code[RW]

Public Class Methods

new(code, msg) click to toggle source
Calls superclass method
# File lib/processout/errors/authentication_error.rb, line 4
def initialize(code, msg)
  self.code = code
  super(msg)
end