for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Aidphp\Di;
use InvalidArgumentException;
use Psr\Container\NotFoundExceptionInterface;
class NotFoundException extends InvalidArgumentException implements NotFoundExceptionInterface
{
public function __construct($id)
parent::__construct('Unable to resolve "' . $id . '"');
}