lib/nanoc/base/errors.rb in nanoc-4.4.4 vs lib/nanoc/base/errors.rb in nanoc-4.4.5
- old
+ new
@@ -205,7 +205,16 @@
class CannotGetParentOrChildrenOfNonLegacyItem < Generic
def initialize(identifier)
super("You cannot get the parent or children of an item that has a “full” identifier (#{identifier}). Getting the parent or children of an item is only possible for items that have a legacy identifier.")
end
end
+
+ class UndefinedFilterForLayout < Generic
+ def initialize(layout)
+ super("There is no filter defined for the layout #{layout.identifier}")
+ end
+ end
+
+ class InternalInconsistency < Generic
+ end
end
end