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