File manager - Edit - /var/www/html/spdc/api/app/Exceptions/Handler.php
Back
<?php namespace App\Exceptions; use Throwable; use Illuminate\Http\JsonResponse; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException; class Handler extends ExceptionHandler { /** * A list of exception types with their corresponding custom log levels. * * @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*> */ protected $levels = [ // ]; /** * A list of the exception types that are not reported. * * @var array<int, class-string<\Throwable>> */ protected $dontReport = [ // ]; /** * A list of the inputs that are never flashed to the session on validation exceptions. * * @var array<int, string> */ protected $dontFlash = [ 'current_password', 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. * * @return void */ public function register() { $this->reportable(function (Throwable $e) { // }); $this->renderable(function (NotFoundHttpException $e) { return new JsonResponse([ 'message' => __('general.not_found'), 'data' => [ 'message' => $e->getMessage(), 'code' => $e->getCode(), 'file' => $e->getFile(), 'line' => $e->getLine(), // Pode adicionar mais detalhes se necessário ] ], JsonResponse::HTTP_NOT_FOUND); }); $this->renderable(function (UnprocessableEntityHttpException $e) { return new JsonResponse([ 'message' => __('general.validation_error') ], JsonResponse::HTTP_FORBIDDEN); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings