芝麻web文件管理V1.00
编辑当前文件:/www/wwwroot/shphe-en.com/admin/extend/vendor/qiniu/php-sdk/src/Qiniu/Http/Error.php
* {"error" : "detailed error message"} * */ 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; } }