ApiException.php 342 B

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