1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Container\Exception; |
4: | |
5: | use Salient\Contract\Container\ArgumentsNotUsedExceptionInterface; |
6: | use Salient\Core\AbstractException; |
7: | |
8: | /** |
9: | * Thrown when a container cannot pass arguments to a service, e.g. because it |
10: | * resolves to a shared instance |
11: | */ |
12: | class ArgumentsNotUsedException extends AbstractException implements ArgumentsNotUsedExceptionInterface {} |
13: |