Exception: DependencyError
- Defined in:
- lib/rbbt/util/misc/exceptions.rb
Instance Method Summary collapse
-
#initialize(msg) ⇒ DependencyError
constructor
A new instance of DependencyError.
Constructor Details
#initialize(msg) ⇒ DependencyError
Returns a new instance of DependencyError.
66 67 68 69 70 71 72 73 74 |
# File 'lib/rbbt/util/misc/exceptions.rb', line 66 def initialize(msg) if defined? Step and Step === msg step = msg new_msg = [step.path, step..last] * ": " super(new_msg) else super(msg) end end |