WechatReplyException.php 1.2 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\exceptions;
  12. use Throwable;
  13. /**
  14. * 微信消息回复错误
  15. * Class WechatReplyException
  16. * @package crmeb\exceptions
  17. */
  18. class WechatReplyException extends \RuntimeException
  19. {
  20. public function __construct($message = "", $code = 0, Throwable $previous = null)
  21. {
  22. if (is_array($message)) {
  23. $errInfo = $message;
  24. $message = $errInfo[1] ?? '未知错误';
  25. if ($code === 0) {
  26. $code = $errInfo[0] ?? 400;
  27. }
  28. }
  29. parent::__construct($message, $code, $previous);
  30. }
  31. }