Exception: Kiba::Extend::MissingDependencyError
- Inherits:
-
NameError
- Object
- NameError
- Kiba::Extend::MissingDependencyError
- Includes:
- ErrMod
- Defined in:
- lib/kiba/extend/error.rb
Overview
Exception raised if dependency file is still missing after we tried to run dependencies
Instance Method Summary collapse
-
#initialize(filekey, path) ⇒ MissingDependencyError
constructor
A new instance of MissingDependencyError.
Methods included from ErrMod
Constructor Details
#initialize(filekey, path) ⇒ MissingDependencyError
Returns a new instance of MissingDependencyError.
163 164 165 166 |
# File 'lib/kiba/extend/error.rb', line 163 def initialize(filekey, path) msg = "Cannot locate dependent file for #{filekey} at #{path}" super(msg) end |