for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Turahe\Counters\Exceptions;
use InvalidArgumentException;
class CounterDoesNotExist extends InvalidArgumentException
{
public static function create(string $key)
return new static("There is no counter with key `{$key}`.");
}