class JsonTest::MissingFile
Attributes
path[R]
Public Class Methods
new(path)
click to toggle source
# File lib/jsontest/errors.rb, line 26 def initialize(path) @path = path end
Public Instance Methods
to_s()
click to toggle source
# File lib/jsontest/errors.rb, line 30 def to_s "No JSON file at #{path}" end