Exception: DeltaTest::TableNotFoundError
- Inherits:
-
IOError
- Object
- IOError
- DeltaTest::TableNotFoundError
- Defined in:
- lib/delta_test/errors.rb
Instance Method Summary collapse
-
#initialize(table_file_path) ⇒ TableNotFoundError
constructor
A new instance of TableNotFoundError.
- #message ⇒ Object
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
#message ⇒ Object
9 10 11 |
# File 'lib/delta_test/errors.rb', line 9 def 'table file not found at: `%s`' % @table_file_path end |