aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-08-09 08:15:18 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-08-09 08:15:18 +0900
commit73f33266d862baa0be6c5514bdba064168532f2b (patch)
tree39f7831994bf14ee14ddab82a617b3bceb1a039f /guides
parent46f511685c91486295a418547bb08c2aa5e49cfc (diff)
downloadrails-73f33266d862baa0be6c5514bdba064168532f2b.tar.gz
rails-73f33266d862baa0be6c5514bdba064168532f2b.tar.bz2
rails-73f33266d862baa0be6c5514bdba064168532f2b.zip
update list of rescue_responses default [ci skip]
Follow up to fe859a54219740fa8b4e09a592820d2ee12ba222
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 48cbbe1f7d..3aa21b7772 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -455,6 +455,8 @@ encrypted cookies salt value. Defaults to `'signed encrypted cookie'`.
'ActionDispatch::ParamsParser::ParseError' => :bad_request,
'ActionController::BadRequest' => :bad_request,
'ActionController::ParameterMissing' => :bad_request,
+ 'Rack::QueryParser::ParameterTypeError' => :bad_request,
+ 'Rack::QueryParser::InvalidParameterError' => :bad_request,
'ActiveRecord::RecordNotFound' => :not_found,
'ActiveRecord::StaleObjectError' => :conflict,
'ActiveRecord::RecordInvalid' => :unprocessable_entity,