class Lingo::SourceFileNotFoundError

Attributes

id[R]

Public Class Methods

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

Public Instance Methods

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