for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gacela\Resolver\Exception;
use RuntimeException;
final class DependencyNotFoundException extends RuntimeException
{
public static function mapNotFoundForClassName(string $className): self
$message = <<<TXT
Did you forget to map this interface to a concrete class? No concrete class was found that implements:
{$className}
TXT;
return new self($message);
}