Exception: Faccts::YAMLFileReader::FileNotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/faccts/01_loading_test_specification/yaml_file_reader.rb

Constant Summary collapse

ERROR_MESSAGE =
"Cannot find acceptance test specification file '#{TARGET_FILE_PATH}'".freeze

Instance Method Summary collapse

Constructor Details

#initialize(_msg = "") ⇒ FileNotFoundError

Returns a new instance of FileNotFoundError.



16
17
18
# File 'lib/faccts/01_loading_test_specification/yaml_file_reader.rb', line 16

def initialize(_msg = "")
  super(ERROR_MESSAGE)
end