diff options
author | Claire McQuin <claire@getchef.com> | 2014-11-19 16:40:04 -0800 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-12-17 18:52:02 -0800 |
commit | 694b24cf15b287242e842d322a3eb0db901879e8 (patch) | |
tree | 8476236fac2ad151395e4126ebfd8145c056da58 /lib/chef | |
parent | 246c9dc60e1bed3b237b2454da445c3ef5c92b7e (diff) | |
download | chef-694b24cf15b287242e842d322a3eb0db901879e8.tar.gz |
Add Chef::Exceptions to audit error
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/audit/audit_reporter.rb | 2 |
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 |