class Lingo::NoWritableStoreError
Attributes
file[R]
path[R]
Public Class Methods
new(file, path)
click to toggle source
# File lib/lingo/error.rb, line 48 def initialize(file, path) @file, @path = file, path end
Public Instance Methods
to_s()
click to toggle source
# File lib/lingo/error.rb, line 52 def to_s 'No writable store found in search path.' end