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