1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace PHPStan\BetterReflection\SourceLocator\SourceStubber\Exception;
6:
7: use RuntimeException;
8:
9: class CouldNotFindPhpStormStubs extends RuntimeException
10: {
11: public static function create(): self
12: {
13: return new self('Could not find PhpStorm stubs');
14: }
15: }
16: