class Toast::Errors::HandlerError

Attributes

orig_error[RW]
source_location[RW]

Public Class Methods

new(orig_error, source_location) click to toggle source
Calls superclass method
# File lib/toast/errors.rb, line 7
def initialize orig_error, source_location
  @orig_error = orig_error
  @source_location = source_location
  super ''
end