class Lingo::SourceFileNotFoundError

Attributes

id[R]

Public Class Methods

new(name, id) click to toggle source
Calls superclass method Lingo::FileError.new
# File lib/lingo/error.rb, line 173
def initialize(name, id)
  super(name)
  @id = id
end

Public Instance Methods

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