1 | <?php |
||
8 | class BadRequest extends Exception |
||
9 | { |
||
10 | /** |
||
11 | * @var \Psr\Http\Message\ResponseInterface |
||
12 | */ |
||
13 | public $response; |
||
14 | |||
15 | /** |
||
16 | * The dropbox error code supplied in the response. |
||
17 | * |
||
18 | * @var string|null |
||
19 | */ |
||
20 | public $dropboxCode; |
||
21 | |||
22 | public function __construct(ResponseInterface $response) |
||
36 | } |
||
37 |