for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Turahe\Counters\Exceptions;
use InvalidArgumentException;
class CounterAlreadyExists extends InvalidArgumentException
{
public static function create(String $key)
return new static("A `{$key}` counter already exists.");
}