class Lingo::LibraryLoadError
Attributes
err[R]
klass[R]
lib[R]
Public Class Methods
new(klass, lib, err)
click to toggle source
# File lib/lingo/error.rb, line 210 def initialize(klass, lib, err) @klass, @lib, @err = klass, lib, err end
Public Instance Methods
to_s()
click to toggle source
# File lib/lingo/error.rb, line 214 def to_s error("#{class_name}: An error occured while trying to load `#{lib}'") end