Exception: Derelict::Plugin::NotFound

Inherits:
Exception
  • Object
show all
Defined in:
lib/derelict/plugin/not_found.rb

Overview

A plugin that isn’t currently installed has been retrieved

Instance Method Summary collapse

Constructor Details

#initialize(plugin_name) ⇒ NotFound

Initializes a new instance of this exception, for a plugin name

* plugin_name: The name of the plugin that this exception
               relates to


9
10
11
# File 'lib/derelict/plugin/not_found.rb', line 9

def initialize(plugin_name)
  super "Plugin '#{plugin_name}' is not currently installed"
end