123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace think\exception;
- use think\Response;
- class HttpResponseException extends \RuntimeException
- {
-
- protected $response;
- public function __construct(Response $response)
- {
- $this->response = $response;
- }
- public function getResponse()
- {
- return $this->response;
- }
- }
|