for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\ValidationRules\Exceptions;
use Exception;
class InvalidDate extends Exception
{
public static function withFormat(string $format, string $value): InvalidDate
return new self("Invalid date {$value} for format {$format}");
}