Exception: DependencyError

Inherits:
Aborted
  • Object
show all
Defined in:
lib/rbbt/util/misc/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ DependencyError

Returns a new instance of DependencyError.



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/rbbt/util/misc/exceptions.rb', line 32

def initialize(msg)
  if defined? Step and Step === msg
    step = msg
    workflow = step.path.split("/")[-3]
    new_msg = [workflow, step.short_path, step.messages.last] * " - "
    new_msg = [step.path, step.messages.last] * ": "
    super(new_msg)
  else
    super(msg)
  end
end