class Pluginator::MissingType

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

Public Class Methods

new(type, list) click to toggle source

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

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