1 | <?php declare(strict_types=1); |
||
15 | class MisdirectedRequest extends ClientError |
||
16 | { |
||
17 | /** |
||
18 | * Construct a new 'Misdirected Request' exception. |
||
19 | * |
||
20 | * @param string[][] $headers Additional headers associated with the exception. |
||
21 | */ |
||
22 | 2 | public function __construct(array $headers = []) |
|
26 | } |
||
27 |