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