class Snoopy::Exception::Exception

Attributes

backtrace[RW]

Public Class Methods

new(msg, backtrace) click to toggle source
Calls superclass method
# File lib/snoopy_afip/exceptions.rb, line 7
def initialize(msg, backtrace)
  @backtrace = backtrace
  super(msg)
end