1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Container\Exception;
4:
5: use Psr\Container\NotFoundExceptionInterface;
6:
7: /**
8: * @api
9: */
10: interface ServiceNotFoundException extends ContainerException, NotFoundExceptionInterface {}
11: