Exception: Hairballs::PluginNotFound

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/hairballs/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(plugin_name) ⇒ PluginNotFound

Returns a new instance of PluginNotFound.



3
4
5
6
# File 'lib/hairballs/exceptions.rb', line 3

def initialize(plugin_name)
  message = "Plugin not found: :#{plugin_name}."
  super(message)
end