1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Container\Exception; |
4: | |
5: | use Salient\Contract\Container\InvalidServiceExceptionInterface; |
6: | use Salient\Core\AbstractException; |
7: | |
8: | /** |
9: | * Thrown when a service cannot be bound to a container |
10: | */ |
11: | class InvalidServiceException extends AbstractException implements InvalidServiceExceptionInterface {} |
12: |