例外をまとめて処理するためApplicationControllerなどでrescue_fromを使用する際には記述順に注意。下から処理される。
app/controllers/application_controller.rb
rescue_from Exception, with: :hoge
rescue_from ActiveRecord::RecordNotFound, with: :fuga
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
例外をまとめて処理するためApplicationControllerなどでrescue_fromを使用する際には記述順に注意。下から処理される。
rescue_from Exception, with: :hoge
rescue_from ActiveRecord::RecordNotFound, with: :fuga
Register as a new user and use Qiita more conveniently
Go to list of users who liked