1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace PHPStan\BetterReflection\Reflection\Exception;
6:
7: use RuntimeException;
8:
9: class CodeLocationMissing extends RuntimeException
10: {
11: public static function create(): self
12: {
13: return new self('Code location is missing');
14: }
15: }
16: