From 1fa4f9243d09b3872a110c1057a828a753822728 Mon Sep 17 00:00:00 2001 From: Guillermo Iguaran Date: Mon, 13 Aug 2012 00:41:04 -0500 Subject: Rename ForbiddenAttributes exception to ForbiddenAttributesError --- activemodel/lib/active_model/forbidden_attributes_protection.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activemodel/lib/active_model') diff --git a/activemodel/lib/active_model/forbidden_attributes_protection.rb b/activemodel/lib/active_model/forbidden_attributes_protection.rb index 29bc47f151..a5e4c4f650 100644 --- a/activemodel/lib/active_model/forbidden_attributes_protection.rb +++ b/activemodel/lib/active_model/forbidden_attributes_protection.rb @@ -1,11 +1,11 @@ module ActiveModel - class ForbiddenAttributes < StandardError + class ForbiddenAttributesError < StandardError end module ForbiddenAttributesProtection def sanitize_for_mass_assignment(attributes, options = {}) if attributes.respond_to?(:permitted?) && !attributes.permitted? - raise ActiveModel::ForbiddenAttributes + raise ActiveModel::ForbiddenAttributesError else attributes end -- cgit v1.2.3