| 1 | <?php declare(strict_types=1); |
||
| 15 | class ProxyAuthenticationRequired extends ClientError |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Construct a new 'Proxy Authentication Required' exception. |
||
| 19 | * |
||
| 20 | * @param string $challenge The challenge for the target resource. |
||
| 21 | * @param string[][] $headers Additional headers associated with the exception. |
||
| 22 | */ |
||
| 23 | 4 | public function __construct(string $challenge, array $headers = []) |
|
| 28 | } |
||
| 29 |