Exception: CodeKeeper::TargetFileNotFoundError
- Inherits:
-
StandardError
- Object
- StandardError
- CodeKeeper::TargetFileNotFoundError
- Defined in:
- lib/code_keeper.rb
Overview
Raised when a file does not exist
Instance Method Summary collapse
-
#initialize(path) ⇒ TargetFileNotFoundError
constructor
A new instance of TargetFileNotFoundError.
Constructor Details
#initialize(path) ⇒ TargetFileNotFoundError
Returns a new instance of TargetFileNotFoundError.
30 31 32 33 |
# File 'lib/code_keeper.rb', line 30 def initialize(path) msg = "The target file does not exist. Check the file path: #{path}." super(msg) end |