blob: a83be0b120f3b44a0559df23519c8e4a90e6a710 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Engelsystem\Container;
use Psr\Container\NotFoundExceptionInterface;
class NotFoundException extends ContainerException implements NotFoundExceptionInterface
{
}
|