D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
spatie
/
browsershot
/
src
/
Exceptions
/
Filename :
UnsuccessfulResponse.php
back
Copy
<?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}"); } }