Exception: Hanami::CLI::FileAlreadyExistsError
- Defined in:
- lib/hanami/cli/errors.rb
Overview
Constant Summary collapse
- ERROR_MESSAGE =
"The file `%{file_path}` could not be generated because it already exists.\n".chomp
Instance Method Summary collapse
-
#initialize(file_path) ⇒ FileAlreadyExistsError
constructor
A new instance of FileAlreadyExistsError.
Constructor Details
#initialize(file_path) ⇒ FileAlreadyExistsError
Returns a new instance of FileAlreadyExistsError.
53 54 55 |
# File 'lib/hanami/cli/errors.rb', line 53 def initialize(file_path) super(ERROR_MESSAGE % {file_path:}) end |