class DeltaTest::TableNotFoundError
Public Class Methods
new(table_file_path)
click to toggle source
# File lib/delta_test/errors.rb, line 5 def initialize(table_file_path) @table_file_path = table_file_path end
Public Instance Methods
message()
click to toggle source
# File lib/delta_test/errors.rb, line 9 def message 'table file not found at: `%s`' % @table_file_path end