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.



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

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