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