4 * @see https://github.com/laminas/laminas-diactoros for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-diactoros/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-diactoros/blob/master/LICENSE.md New BSD License
9 declare(strict_types=1);
11 namespace Laminas\Diactoros\Exception;
13 use UnexpectedValueException;
17 class UnrecognizedProtocolVersionException extends UnexpectedValueException implements ExceptionInterface
19 public static function forVersion(string $version) : self
21 return new self(sprintf('Unrecognized protocol version (%s)', $version));