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