/home/brandsfa/public_html/vendor/spatie/browsershot/src/Exceptions/FileDoesNotExistException.php
<?php

namespace Spatie\Browsershot\Exceptions;

use Exception;

class FileDoesNotExistException extends Exception
{
    public static function make(string $file): static
    {
        return new static("The file `{$file}` does not exist");
    }
}