class Lingo::FileNotFoundError

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
# File lib/lingo/error.rb, line 138
def initialize(name)
  @name = name
end

Public Instance Methods

to_s() click to toggle source
# File lib/lingo/error.rb, line 142
def to_s
  "No such file `#{name}'."
end