PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
browsershot
/
src
/
Exceptions
/
Editing: UnsuccessfulResponse.php
<?php namespace Spatie\Browsershot\Exceptions; use Exception; class UnsuccessfulResponse extends Exception { public function __construct($url, $code) { parent::__construct("The given url `{$url}` responds with code {$code}"); } }
SAVE
CANCEL