for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Anfischer\Cloner\Exceptions;
use Exception;
class NoCompatiblePersistenceStrategyFound extends Exception
{
public static function forType(string $type): self
return new static("There are no compatable persistence strategies available for `{$type}`.");
}