class CuentaDigital::Exception::Exception

Attributes

backtrace[RW]

Public Class Methods

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