1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace PHPStan\BetterReflection\SourceLocator\Type\Composer\Factory\Exception;
6:
7: use UnexpectedValueException;
8:
9: use function sprintf;
10:
11: final class FailedToParseJson extends UnexpectedValueException implements Exception
12: {
13: public static function inFile(string $file): self
14: {
15: return new self(sprintf('Could not parse JSON file "%s"', $file));
16: }
17: }
18: