the-kbA-team/memory-container

View on GitHub
src/NotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace kbATeam\MemoryContainer;

use Psr\Container\NotFoundExceptionInterface;

/**
 * Class kbATeam\MemoryContainer\NotFoundException
 *
 * No entry was found in the container.
 *
 * @package kbATeam\MemoryContainer
 * @author  Gregor J.
 * @license MIT
 */
class NotFoundException extends ContainerException implements NotFoundExceptionInterface
{
}