server/config/autoload/exceptions.php

16 lines
442 B
PHP

<?php
declare(strict_types=1);
return [
'handler' => [
'http' => [
Hyperf\HttpServer\Exception\Handler\HttpExceptionHandler::class,
App\Exception\Handler\AppExceptionHandler::class,
App\Exception\Handler\ValidationExceptionHandler::class,
App\Exception\Handler\RateLimitExceptionHandle::class,
App\Exception\Handler\DbQueryExceptionHandle::class,
],
],
];