Commit da7376d4 authored by Taylor Otwell's avatar Taylor Otwell

working on exception handling for model not found.

parent 8061c213
...@@ -3,7 +3,9 @@ ...@@ -3,7 +3,9 @@
namespace App\Exceptions; namespace App\Exceptions;
use Exception; use Exception;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Symfony\Component\HttpKernel\Exception\HttpException; use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
...@@ -15,6 +17,7 @@ class Handler extends ExceptionHandler ...@@ -15,6 +17,7 @@ class Handler extends ExceptionHandler
*/ */
protected $dontReport = [ protected $dontReport = [
HttpException::class, HttpException::class,
ModelNotFoundException::class,
]; ];
/** /**
...@@ -39,6 +42,10 @@ class Handler extends ExceptionHandler ...@@ -39,6 +42,10 @@ class Handler extends ExceptionHandler
*/ */
public function render($request, Exception $e) public function render($request, Exception $e)
{ {
if ($e instanceof ModelNotFoundException) {
$e = new NotFoundHttpException(404, $e->getMessage(), $e);
}
return parent::render($request, $e); return parent::render($request, $e);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment