for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Lamoda\Metric\Storage\Exception;
class MetricStorageException extends \OutOfBoundsException
{
public static function becauseUnknownKeyInStorage(string $key): self
return new self(sprintf('Metric "%s" does not exist or is not mutable', $key));
}