class Nanoc::Int::Errors::UnknownFilter
Error that is raised during site compilation when an item uses a filter that is not known.
Public Class Methods
new(filter_name)
click to toggle source
@param [Symbol] filter_name The filter name for which no filter could
be found
Calls superclass method
# File lib/nanoc/base/errors.rb, line 38 def initialize(filter_name) super("The requested filter, “#{filter_name}”, does not exist.") end