for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace App\Crossword\Features\Languages\Request;
use RuntimeException;
final class RequestException extends RuntimeException
{
public static function missingRequest(): self
return new self('Not found current request.');
}