aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/errors.rb
diff options
context:
space:
mode:
authorChristian Bäuerlein <fabrik42@gmail.com>2011-10-14 16:28:02 +0200
committerChristian Bäuerlein <fabrik42@gmail.com>2011-10-14 16:28:02 +0200
commit410fa4cf7c710ff062c59c1c90357729c418be65 (patch)
treea7fa601845f6de15ae53f9e23049559959432ead /activerecord/lib/active_record/errors.rb
parent401d00d296c0c4dafd0e1103051f6adf0ae56fc5 (diff)
downloadrails-410fa4cf7c710ff062c59c1c90357729c418be65.tar.gz
rails-410fa4cf7c710ff062c59c1c90357729c418be65.tar.bz2
rails-410fa4cf7c710ff062c59c1c90357729c418be65.zip
Includes stale record in StaleObjectError
Diffstat (limited to 'activerecord/lib/active_record/errors.rb')
-rw-r--r--activerecord/lib/active_record/errors.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/errors.rb b/activerecord/lib/active_record/errors.rb
index 96870cb338..950fc7356c 100644
--- a/activerecord/lib/active_record/errors.rb
+++ b/activerecord/lib/active_record/errors.rb
@@ -99,6 +99,15 @@ module ActiveRecord
#
# Read more about optimistic locking in ActiveRecord::Locking module RDoc.
class StaleObjectError < ActiveRecordError
+ attr_reader :record
+
+ def initialize(record)
+ @record = record
+ end
+
+ def message
+ "Attempted to update a stale object: #{record.class.name}"
+ end
end
# Raised when association is being configured improperly or