D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
spatie
/
browsershot
/
src
/
Exceptions
/
Filename :
FileDoesNotExistException.php
back
Copy
<?php namespace Spatie\Browsershot\Exceptions; use Exception; class FileDoesNotExistException extends Exception { public function __construct($file) { parent::__construct("The file `{$file}` does not exist"); } }