for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mostafaznv\LaraCache\Exceptions;
use InvalidArgumentException;
class CacheGroupValueIsNotValid extends InvalidArgumentException
{
public static function make(string $group): static
return new static("The value of the group [$group] is not valid.");
}