17
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

rescue_from使用時の注意点

Posted at

例外をまとめて処理するためApplicationControllerなどでrescue_fromを使用する際には記述順に注意。下から処理される。

app/controllers/application_controller.rb
rescue_from Exception, with: :hoge
rescue_from ActiveRecord::RecordNotFound, with: :fuga
17
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?