WechatException.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\services\wechat;
  12. use Throwable;
  13. /**
  14. * 微信错误统一处理
  15. * Class WechatException
  16. * @package crmeb\services\wechat
  17. */
  18. class WechatException extends \RuntimeException
  19. {
  20. /**
  21. * WechatException constructor.
  22. * @param string $message
  23. * @param int $code
  24. * @param Throwable|null $previous
  25. */
  26. public function __construct($message = "", $code = 0, Throwable $previous = null)
  27. {
  28. parent::__construct($message, $code, $previous);
  29. }
  30. }