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