HttpResponseException.php 949 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: yunwuxin <448901948@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\exception;
  12. use think\Response;
  13. class HttpResponseException extends \RuntimeException
  14. {
  15. /**
  16. * @var Response
  17. */
  18. protected $response;
  19. public function __construct(Response $response)
  20. {
  21. $this->response = $response;
  22. }
  23. public function getResponse()
  24. {
  25. return $this->response;
  26. }
  27. }