You are here

public function DeadClient::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Exception

Code

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);
}