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

namespace Uid\Utils\Container;

use Psr\Container\NotFoundExceptionInterface;

/**
 * No entry was found in the container.
 */
class NotFoundException extends ContainerException implements NotFoundExceptionInterface
{
}