Exception: Hem::MissingDependency

Inherits:
Error
  • Object
show all
Defined in:
lib/hem/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.



80
81
82
83
# File 'lib/hem/errors.rb', line 80

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