for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Scalp\PatternMatching\Exception;
use function Scalp\Conversion\AnyToString;
final class PatternMatchingSubjectNotFound extends \RuntimeException
{
public static function for($x): PatternMatchingSubjectNotFound
return new self('Pattern matching subject "'.AnyToString($x).'" is not defined in this match expression".');
}