for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chocofamily\LaravelEventSauce\Exceptions;
use Exception;
final class CodeGenerationFailed extends Exception
{
public static function definitionFileDoesNotExist(string $definitionFile): self
return new static("The code generation definition file specified in the config file (`{$definitionFile}`) does not exist.");
}