1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace PHPStan\BetterReflection\Reflection\Adapter\Exception;
6:
7: use LogicException;
8:
9: class NotImplemented extends LogicException
10: {
11: }
12: