for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rawilk\LaravelModules\Exceptions;
use Exception;
class ModuleNotFound extends Exception
{
public static function named(string $name): self
return new static("Module [{$name}] does not exist!");
}