class Nanoc::Core::ActionSequenceBuilder::CannotCreateMultipleSnapshotsWithSameNameError

Error that is raised when a snapshot with an existing name is made.

Public Class Methods

new(rep, snapshot) click to toggle source
Calls superclass method
# File lib/nanoc/core/action_sequence_builder.rb, line 13
def initialize(rep, snapshot)
  super("Attempted to create a snapshot with a duplicate name #{snapshot.inspect} for the item rep #{rep}")
end