Exception: DeltaTest::TableNotFoundError

Inherits:
IOError
  • Object
show all
Defined in:
lib/delta_test/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(table_file_path) ⇒ TableNotFoundError

Returns a new instance of TableNotFoundError.



5
6
7
# File 'lib/delta_test/errors.rb', line 5

def initialize(table_file_path)
  @table_file_path = table_file_path
end

Instance Method Details

#messageObject



9
10
11
# File 'lib/delta_test/errors.rb', line 9

def message
  'table file not found at: `%s`' % @table_file_path
end