ApiException.php 369 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @Name
  4. *
  5. * @Description
  6. *
  7. * @Author 刘学玺
  8. *
  9. * @Date 2024/3/22 17:24
  10. */
  11. namespace App\Exceptions;
  12. use Exception;
  13. class ApiException extends Exception
  14. {
  15. public function __construct(array $apiErrorConst, ?\Throwable $previous = null)
  16. {
  17. // parent::__construct($apiErrorConst['message'], $apiErrorConst['code'], $previous);
  18. }
  19. }