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