Exception: Hobo::MissingDependency

Inherits:
Error
  • Object
show all
Defined in:
lib/hobo/errors.rb

Instance Attribute Summary

Attributes inherited from Error

#exit_code

Instance Method Summary collapse

Constructor Details

#initialize(dep) ⇒ MissingDependency

Returns a new instance of MissingDependency.



63
64
65
66
# File 'lib/hobo/errors.rb', line 63

def initialize dep
  @dependency = dep
  super("A tool that hobo depends on could not be detected (#{dep})")
end