Exception: Kiba::Extend::JobCannotBeUsedAsLookupError

Inherits:
TypeError
  • Object
show all
Includes:
ErrMod
Defined in:
lib/kiba/extend/error.rb

Instance Method Summary collapse

Methods included from ErrMod

#calling_job, #info

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

#formattedObject



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