質問編集履歴

2

タイトルと内容の変更

2021/04/12 06:02

投稿

prr4e
prr4e

スコア73

test CHANGED
@@ -1 +1 @@
1
- laravel5.7 独自例外処理の追加
1
+ laravel5.7 独自例外処理の追加をしましたが、意図した動きにならず困っています。
test CHANGED
@@ -64,7 +64,7 @@
64
64
 
65
65
  return $response()->json($response);
66
66
 
67
- } catch Exception $) {
67
+ } catch Exception $e) {
68
68
 
69
69
  $response['status'] = 'fail';
70
70
 
@@ -125,3 +125,23 @@
125
125
  hadler.phpに設定した時は、画面にアラートボックスが表示されました。
126
126
 
127
127
  controllerにて、trycatchでエラーハンドリングを実施したいと思っています。
128
+
129
+
130
+
131
+ 尚、下記実装したところ正常にクラスは読み込めているようです。
132
+
133
+
134
+
135
+ catch (Exception | FileUtilsExecption $e) {
136
+
137
+ get_class($e)
138
+
139
+ $response['message'] = get_class($e); // FileUtilsExecptionが取得される
140
+
141
+ // javascriptへ返却
142
+
143
+ return $response()->json($response);
144
+
145
+
146
+
147
+ }

1

文章の変更

2021/04/12 06:02

投稿

prr4e
prr4e

スコア73

test CHANGED
File without changes
test CHANGED
@@ -123,3 +123,5 @@
123
123
 
124
124
 
125
125
  hadler.phpに設定した時は、画面にアラートボックスが表示されました。
126
+
127
+ controllerにて、trycatchでエラーハンドリングを実施したいと思っています。