class Nanoc::Int::Errors::UnknownLayout
Error that is raised during site compilation when an item uses a layout that is not present in the site.
Public Class Methods
new(layout_identifier)
click to toggle source
@param [String] layout_identifier The layout identifier for which no
layout could be found
Calls superclass method
# File lib/nanoc/base/errors.rb, line 28 def initialize(layout_identifier) super("The site does not have a layout with identifier “#{layout_identifier}”.") end