summaryrefslogtreecommitdiff
path: root/lib/chef/audit
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2014-11-19 16:40:04 -0800
committertyler-ball <tyleraball@gmail.com>2014-12-17 18:52:02 -0800
commit694b24cf15b287242e842d322a3eb0db901879e8 (patch)
tree8476236fac2ad151395e4126ebfd8145c056da58 /lib/chef/audit
parent246c9dc60e1bed3b237b2454da445c3ef5c92b7e (diff)
downloadchef-694b24cf15b287242e842d322a3eb0db901879e8.tar.gz
Add Chef::Exceptions to audit error
Diffstat (limited to 'lib/chef/audit')
-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