for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace UltraLite\CompositeContainer;
use Psr\Container\NotFoundExceptionInterface;
class ServiceNotFound extends \InvalidArgumentException implements NotFoundExceptionInterface
{
public static function createFromServiceId(string $serviceId) : ServiceNotFound
$message = "Service '$serviceId' requested from composite DI container, but not found.";
return new static($message);
}