File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/Illuminate/Foundation/Exceptions Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1111use Illuminate \Contracts \Debug \ExceptionHandler as ExceptionHandlerContract ;
1212use Illuminate \Contracts \Support \Responsable ;
1313use Illuminate \Database \Eloquent \ModelNotFoundException ;
14+ use Illuminate \Database \MultipleRecordsFoundException ;
15+ use Illuminate \Database \RecordsNotFoundException ;
1416use Illuminate \Http \Exceptions \HttpResponseException ;
1517use Illuminate \Http \JsonResponse ;
1618use Illuminate \Http \RedirectResponse ;
@@ -89,6 +91,8 @@ class Handler implements ExceptionHandlerContract
8991 HttpException::class,
9092 HttpResponseException::class,
9193 ModelNotFoundException::class,
94+ MultipleRecordsFoundException::class,
95+ RecordsNotFoundException::class,
9296 SuspiciousOperationException::class,
9397 TokenMismatchException::class,
9498 ValidationException::class,
You can’t perform that action at this time.
0 commit comments