例外処理をまとめる
適応バージョン
- 2.2.1
- 2.3.2
- 2.3.8
- 3.0.0
- 3.0.5
- 3.0.7
- 3.0.9
- 3.1.0
- 3.2.3
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
例外処理をまとめる
使い方
rescue_from(例外.., with: メソッド=nil, ブロック引数)
例
例外処理をまとめる
rescue_from User::NotAuthorized, with: :deny_access
ブロック
rescue_from ActiveRecord::RecordNotFound do |exception|
render json: { error: '404 not found' }, status: 404
end
####