HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/vendor/spatie/browsershot/src/Exceptions/
Upload File :
Current File : //home/cardxfeb/public_html/vendor/spatie/browsershot/src/Exceptions/FileDoesNotExistException.php
<?php

namespace Spatie\Browsershot\Exceptions;

use Exception;

class FileDoesNotExistException extends Exception
{
    public function __construct($file)
    {
        parent::__construct("The file `{$file}` does not exist");
    }
}