class Nanoc::RuleDSL::Errors::NoMatchingCompilationRuleFound

Error that is raised when no compilation rule that can be applied to the current item can be found.

Public Class Methods

new(item) click to toggle source

@param [Nanoc::Core::Item] item The item for which no compilation rule

could be found
Calls superclass method
# File lib/nanoc/rule_dsl/errors.rb, line 19
def initialize(item)
  super("No compilation rules were found for the “#{item.identifier}” item.")
end