for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AcMailer\Exception;
class EmailNotFoundException extends \RuntimeException implements ExceptionInterface
{
public static function fromName(string $name): self
return new self(sprintf('An email with name "%s" could not be found in registered emails list', $name));
}