| 1 | <?php declare(strict_types=1); |
||
| 15 | class Unauthorized extends ClientError |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Construct a new 'Unauthorized' 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 = []) |
|
| 29 | } |
||
| 30 |