Exception: Nanoc3::Errors::CannotDetermineFilter
- Inherits:
-
Generic
- Object
- StandardError
- Generic
- Nanoc3::Errors::CannotDetermineFilter
- Defined in:
- lib/nanoc3/base/errors.rb
Overview
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.
Instance Method Summary (collapse)
-
- (CannotDetermineFilter) initialize(layout_identifier)
constructor
which the filter could not be determined.
Constructor Details
- (CannotDetermineFilter) initialize(layout_identifier)
which the filter could not be determined
55 56 57 |
# File 'lib/nanoc3/base/errors.rb', line 55 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.".make_compatible_with_env) end |