Exception: Kiba::Extend::JobCannotBeUsedAsLookupError
- Inherits:
-
TypeError
- Object
- TypeError
- Kiba::Extend::JobCannotBeUsedAsLookupError
- Includes:
- ErrMod
- Defined in:
- lib/kiba/extend/error.rb
Instance Method Summary collapse
-
#formatted ⇒ Object
-
#initialize(key, klass, for_job) ⇒ JobCannotBeUsedAsLookupError
constructor
A new instance of JobCannotBeUsedAsLookupError.
Methods included from ErrMod
Constructor Details
#initialize(key, klass, for_job) ⇒ JobCannotBeUsedAsLookupError
Returns a new instance of JobCannotBeUsedAsLookupError.
55 56 57 58 59 60 61 62 63 |
# File 'lib/kiba/extend/error.rb', line 55 def initialize(key, klass, for_job) @key = key @klass = klass @for_job = for_job @msg = ":#{key} cannot be used as a lookup in :#{for_job} because "\ "its src_class (#{klass}) does not include "\ "Kiba::Extend::Soures::Lookupable" super(msg) end |
Instance Method Details
#formatted ⇒ Object
65 66 67 68 69 70 |
# File 'lib/kiba/extend/error.rb', line 65 def formatted <<~STR JOB FAILED: LOOKUP FILE SETUP ERROR FOR: #{for_job} #{msg} STR end |