1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Qiniu\Http;
- final class Error
- {
- private $url;
- private $response;
- public function __construct($url, $response)
- {
- $this->url = $url;
- $this->response = $response;
- }
- public function code()
- {
- return $this->response->statusCode;
- }
- public function getResponse()
- {
- return $this->response;
- }
- public function message()
- {
- return $this->response->error;
- }
- }
|