class Derelict::Plugin::NotFound
A plugin that isn't currently installed has been retrieved
Public Class Methods
new(plugin_name)
click to toggle source
Initializes a new instance of this exception, for a plugin name
* plugin_name: The name of the plugin that this exception relates to
Calls superclass method
# File lib/derelict/plugin/not_found.rb, line 9 def initialize(plugin_name) super "Plugin '#{plugin_name}' is not currently installed" end