Files
icehrm/lib/composer/vendor/league/container/src/Exception/NotFoundException.php
2017-09-03 20:39:22 +02:00

11 lines
257 B
PHP

<?php
namespace League\Container\Exception;
use Interop\Container\Exception\NotFoundException as NotFoundExceptionInterface;
use InvalidArgumentException;
class NotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
{
}