for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TomPHP\ContainerConfigurator\Exception;
use DomainException;
use TomPHP\ExceptionConstructorTools;
final class EntryDoesNotExistException extends DomainException implements Exception
{
use ExceptionConstructorTools;
/**
* @param string $key
*
* @return self
*/
public static function fromKey($key)
return self::create('No entry found for "%s".', [$key]);
}