PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
browsershot
/
src
/
Exceptions
/
Editing: ElementNotFound.php
<?php namespace Spatie\Browsershot\Exceptions; use Exception; class ElementNotFound extends Exception { public function __construct($selector) { parent::__construct("The given selector `{$selector} did not match any elements"); } }
SAVE
CANCEL