for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yarak\Exceptions;
use Exception;
class FactoryNotFound extends Exception
{
/**
* Factory definition can not be found.
*
* @param string $message
* @return static
*/
public static function factoryDefinitionNotFound($message)
return new static($message);
}