aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-08-04 23:36:05 -0500
committerJoshua Peek <josh@joshpeek.com>2009-08-04 23:36:05 -0500
commitf8d3c72c39ad209abca7f3613f91fb3a03805261 (patch)
tree2d6f5b67e3212b59be1f00391eeb64ebf5b40548 /activerecord/lib/active_record/base.rb
parent64eecdd131c93d7d6c8ef9c6a7ae6b9d76c72a8b (diff)
downloadrails-f8d3c72c39ad209abca7f3613f91fb3a03805261.tar.gz
rails-f8d3c72c39ad209abca7f3613f91fb3a03805261.tar.bz2
rails-f8d3c72c39ad209abca7f3613f91fb3a03805261.zip
Extract generic attribute method generation to AMo
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index ce93ea8eee..e358564ead 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -148,11 +148,6 @@ module ActiveRecord #:nodoc:
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
- end
-
# Raised when unknown attributes are supplied via mass assignment.
class UnknownAttributeError < NoMethodError
end