1 | <?php declare(strict_types=1); |
||
15 | class UnavailableForLegalReasons extends ClientError |
||
16 | { |
||
17 | /** |
||
18 | * Construct a new 'Unavailable For Legal Reasons' exception. |
||
19 | * |
||
20 | * @param string $link A URI reference identifying the resource itself. |
||
21 | * @param string[][] $headers Headers to be sent along with the prepared response. |
||
22 | */ |
||
23 | 4 | public function __construct(string $link, array $headers = []) |
|
30 | } |
||
31 |