InvalidInstanceException.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace WeChat\Exceptions;
  14. /**
  15. * 加载类异常
  16. * Class InvalidInstanceException
  17. * @package WeChat\Exceptions
  18. */
  19. class InvalidInstanceException extends \Exception
  20. {
  21. /**
  22. * @var array
  23. */
  24. public $raw = [];
  25. /**
  26. * InvalidResponseException constructor.
  27. * @param string $message
  28. * @param integer $code
  29. * @param array $raw
  30. */
  31. public function __construct($message, $code = 0, $raw = [])
  32. {
  33. parent::__construct($message, intval($code));
  34. $this->raw = $raw;
  35. }
  36. }