for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Qiniu\Http;
/**
* 七牛业务请求逻辑错误封装类,主要用来解析API请求返回如下的内容:
* <pre>
* {"error" : "detailed error message"}
* </pre>
*/
final class Error
{
private $url;
* @var Response
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;