Newer
Older
lib-di-container / src / Container / ContainerException.php
@nightfall nightfall on 4 Jul 2023 263 bytes docs
<?php

namespace Uid\Utils\Container;

use Psr\Container\ContainerExceptionInterface;
use Exception;

/**
 * Base interface representing a generic exception in a container.
 */
class ContainerException extends Exception implements ContainerExceptionInterface
{
}