for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OzanAkman\RepositoryGenerator\Exceptions;
use Exception;
class StubException extends Exception
{
public static function fileNotFound($file)
return new static('Stub file does not exists: '.$file);
}