aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/finder_methods.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2016-12-10 06:20:34 -0500
committerGitHub <noreply@github.com>2016-12-10 06:20:34 -0500
commit2e8dad6318f06d2b41be3b3dd50b8bb112d2d200 (patch)
treebdd4d7da0d2b5aba523fe9bafc9138333882876e /activerecord/lib/active_record/relation/finder_methods.rb
parent5a5474325f38d892f182fef479ed0ee4e8835cfa (diff)
parent49edce37f92b1dcad4b67b3eb35922e7cec88726 (diff)
downloadrails-2e8dad6318f06d2b41be3b3dd50b8bb112d2d200.tar.gz
rails-2e8dad6318f06d2b41be3b3dd50b8bb112d2d200.tar.bz2
rails-2e8dad6318f06d2b41be3b3dd50b8bb112d2d200.zip
Merge pull request #25227 from kamipo/numeric_value_out_of_range
Translate numeric value out of range to the specific exception
Diffstat (limited to 'activerecord/lib/active_record/relation/finder_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index 93c8722aa3..5e456452e9 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -76,7 +76,7 @@ module ActiveRecord
# Post.find_by "published_at < ?", 2.weeks.ago
def find_by(arg, *args)
where(arg, *args).take
- rescue RangeError
+ rescue ::RangeError
nil
end
@@ -84,7 +84,7 @@ module ActiveRecord
# an ActiveRecord::RecordNotFound error.
def find_by!(arg, *args)
where(arg, *args).take!
- rescue RangeError
+ rescue ::RangeError
raise RecordNotFound.new("Couldn't find #{@klass.name} with an out of range value",
@klass.name)
end
@@ -333,7 +333,7 @@ module ActiveRecord
end
connection.select_value(relation, "#{name} Exists", relation.bound_attributes) ? true : false
- rescue RangeError
+ rescue ::RangeError
false
end
@@ -458,7 +458,7 @@ module ActiveRecord
else
find_some(ids)
end
- rescue RangeError
+ rescue ::RangeError
raise RecordNotFound, "Couldn't find #{@klass.name} with an out of range ID"
end