class Findr::Error

Class for wrapping original exceptions, which could be from Iconv (Ruby 1.8) or String (Ruby >=1.9). ()

Attributes

original[R]

Public Class Methods

new(msg, original=$!) click to toggle source
Calls superclass method
# File lib/findr/error.rb, line 8
def initialize(msg, original=$!)
  super(msg)
  @original = original;
end