for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Dictionary\Features\WordsFinder\Storage;
use DomainException;
final class WordNotFoundInStorageException extends DomainException
{
public function __construct(string $mask, string $language)
$message = sprintf('The word is not found by mask "%s" in the "%s" dictionary', $mask, $language);
parent::__construct($message);
}