diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-08-08 19:34:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-08 19:34:19 -0400 |
commit | 92e20f398e3dbe8130f8d764701a195c14653e66 (patch) | |
tree | 39f7831994bf14ee14ddab82a617b3bceb1a039f /guides | |
parent | 46f511685c91486295a418547bb08c2aa5e49cfc (diff) | |
parent | 73f33266d862baa0be6c5514bdba064168532f2b (diff) | |
download | rails-92e20f398e3dbe8130f8d764701a195c14653e66.tar.gz rails-92e20f398e3dbe8130f8d764701a195c14653e66.tar.bz2 rails-92e20f398e3dbe8130f8d764701a195c14653e66.zip |
Merge pull request #26086 from y-yagi/update_rescue_responses_default
update list of rescue_responses default [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
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, |