class ChefDK::Policyfile::AttributeMergeChecker::ConflictError

A ConflictError is used to specify a conflict has occurred

Attributes

attribute_path[R]
provided_by[R]

Public Class Methods

new(attribute_path, provided_by) click to toggle source
Calls superclass method
# File lib/chef-dk/policyfile/attribute_merge_checker.rb, line 28
def initialize(attribute_path, provided_by)
  @attribute_path = attribute_path
  @provided_by = provided_by
  super("Attribute '#{attribute_path}' provided conflicting values by the following sources #{provided_by}")
end