class Nanoc::Core::Site::DuplicateIdentifierError

Error that is raised when multiple items or layouts with the same identifier exist.

Public Class Methods

new(identifier, type) click to toggle source
Calls superclass method
# File lib/nanoc/core/site.rb, line 9
def initialize(identifier, type)
  super("There are multiple #{type}s with the #{identifier} identifier.")
end