1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php /** * An exception used to signal no binding was found for container ID. * * @package lucatume\DI52 */
namespace lucatume\DI52;
use Psr\Container\NotFoundExceptionInterface;
/** * Class NotFoundException * * @package lucatume\DI52 */ class NotFoundException extends ContainerException implements NotFoundExceptionInterface { }
|