for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HansOtt\Holiday;
use Exception;
final class NoTranslatorFound extends Exception
{
public static function forCountry($alpha3)
return new static(
sprintf(
'No translator found for country "%s"',
$alpha3
)
);
}
public static function forLocale($locale)
'No translator found for locale "%s"',
$locale