summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/audit/audit_reporter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/audit/audit_reporter.rb b/lib/chef/audit/audit_reporter.rb
index 5ed1f7bd52..b0eb835c0c 100644
--- a/lib/chef/audit/audit_reporter.rb
+++ b/lib/chef/audit/audit_reporter.rb
@@ -70,7 +70,7 @@ class Chef
def control_group_started(name)
if ordered_control_groups.has_key?(name)
- raise AuditControlGroupDuplicate.new(name)
+ raise Chef::Exceptions::AuditControlGroupDuplicate.new(name)
end
ordered_control_groups.store(name, ControlGroupData.new(name))
end