PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
browsershot
/
src
/
Exceptions
/
Editing: 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"); } }
SAVE
CANCEL