Exception: Faccts::RustFileWriter::FileAlreadyExistsError
- Inherits:
-
StandardError
- Object
- StandardError
- Faccts::RustFileWriter::FileAlreadyExistsError
- Defined in:
- lib/faccts/04_exporting_results/rust_file_writer.rb
Constant Summary collapse
- ERROR_MESSAGE =
"Target generation file '#{TARGET_FILE_PATH}'" \ + " already exists.\nI don't want to overwrite it!"
Instance Method Summary collapse
-
#initialize(_msg = "") ⇒ FileAlreadyExistsError
constructor
A new instance of FileAlreadyExistsError.
Constructor Details
#initialize(_msg = "") ⇒ FileAlreadyExistsError
Returns a new instance of FileAlreadyExistsError.
18 19 20 |
# File 'lib/faccts/04_exporting_results/rust_file_writer.rb', line 18 def initialize(_msg = "") super(ERROR_MESSAGE) end |