Railsドキュメント

例外処理をまとめる

適応バージョン

説明

例外処理をまとめる

使い方

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

####

ソースコード