public function DeadClient::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php \Zumba\GastonJS\Exception\DeadClient::__construct()
Parameters
string $message:
int $code:
\Exception $previous:
File
- vendor/
jcalderonzumba/ gastonjs/ src/ Exception/ DeadClient.php, line 17
Class
- DeadClient
- Class DeadClient @package Zumba\GastonJS\Exception
Namespace
Zumba\GastonJS\ExceptionCode
public function __construct($message = "", $code = 0, \Exception $previous = null) {
$errorMsg = $message . "\nPhantomjs browser server is not taking connections, most probably it has crashed\n";
parent::__construct($errorMsg, $code, $previous);
}