11 lines
257 B
PHP
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
|
|
{
|
|
}
|