class Nanoc::Core::Errors::CannotDetermineFilter
Error
that is raised during site compilation when a layout is compiled for which the filter cannot be determined. This is similar to the {UnknownFilter} error, but specific for filters for layouts.
Public Class Methods
new(layout_identifier)
click to toggle source
@param [String] layout_identifier The identifier of the layout for
which the filter could not be determined
Calls superclass method
# File lib/nanoc/core/errors.rb, line 97 def initialize(layout_identifier) super("The filter to be used for the “#{layout_identifier}” layout could not be determined. Make sure the layout does have a filter.") end