class Lingo::BackendNotFoundError

Attributes

file[R]

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/lingo/error.rb, line 68
def to_s
  "No backend found for `#{file}'."
end