aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-07-28 23:52:53 -0500
committerJoshua Peek <josh@joshpeek.com>2009-07-30 17:54:00 -0500
commit94dabf9b4bf14de665cb17570209078f16920e54 (patch)
tree467bcebef4282d94631fe77fc857cdbf999ed438 /activerecord/lib/active_record/base.rb
parentc2b075bed084a59a674469d09db016aaa3365c2e (diff)
downloadrails-94dabf9b4bf14de665cb17570209078f16920e54.tar.gz
rails-94dabf9b4bf14de665cb17570209078f16920e54.tar.bz2
rails-94dabf9b4bf14de665cb17570209078f16920e54.zip
Generate methods for all suffixes
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index f3cb905754..b64c76b558 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -144,10 +144,6 @@ module ActiveRecord #:nodoc:
class Rollback < ActiveRecordError
end
- # Raised when attribute has a name reserved by Active Record (when attribute has name of one of Active Record instance methods).
- class DangerousAttributeError < ActiveRecordError
- end
-
# Raised when you've tried to access a column which wasn't loaded by your finder.
# Typically this is because <tt>:select</tt> has been specified.
class MissingAttributeError < NoMethodError