Exception: Kiba::Extend::Registry::RegisteredFile::NoFilePathError
- Inherits:
-
StandardError
- Object
- StandardError
- Kiba::Extend::Registry::RegisteredFile::NoFilePathError
- Defined in:
- lib/kiba/extend/registry/registered_file.rb
Overview
Exception raised if no path is given in FileRegistry hash
Instance Method Summary collapse
-
#initialize(filekey) ⇒ NoFilePathError
constructor
A new instance of NoFilePathError.
Constructor Details
#initialize(filekey) ⇒ NoFilePathError
Returns a new instance of NoFilePathError.
14 15 16 17 18 |
# File 'lib/kiba/extend/registry/registered_file.rb', line 14 def initialize(filekey) msg = "No file path for :#{filekey} is recorded in file registry "\ "hash" super(msg) end |