class Pluginator::MissingPlugin

raised when plugin can not be found, generated by `*!` methods

Public Class Methods

new(type, name, list) click to toggle source

initialize new error @param type [String] type of the loaded plugin @param name [String] name of the loaded plugin @param list [Array] list of available plugins

Calls superclass method
# File lib/pluginator/errors.rb, line 37
def initialize(type, name, list)
  super("Can not find plugin #{name.inspect} in #{list_to_s(list)} for type #{type.inspect}.")
end