1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Container\Exception; |
4: | |
5: | use Salient\Contract\Container\ServiceNotFoundExceptionInterface; |
6: | use Salient\Core\AbstractException; |
7: | |
8: | /** |
9: | * Thrown when a container cannot resolve a service |
10: | * |
11: | * @api |
12: | */ |
13: | class ServiceNotFoundException extends AbstractException implements ServiceNotFoundExceptionInterface {} |
14: |