for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Chocofamily\LaravelEventSauce\Exceptions;
use Exception;
class MakeFileFailed extends Exception
{
public static function fileExists(string $path): self
return new static("The file at path `{$path}` already exists.");
}