例外をまとめて処理するため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
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