You are here

class DeadClient in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php \Zumba\GastonJS\Exception\DeadClient

Class DeadClient @package Zumba\GastonJS\Exception

Hierarchy

  • class \Zumba\GastonJS\Exception\DeadClient extends \Zumba\GastonJS\Exception\Exception

Expanded class hierarchy of DeadClient

1 file declares its use of DeadClient
BrowserBase.php in vendor/jcalderonzumba/gastonjs/src/Browser/BrowserBase.php

File

vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php, line 10

Namespace

Zumba\GastonJS\Exception
View source
class DeadClient extends \Exception {

  /**
   * @param string     $message
   * @param int        $code
   * @param \Exception $previous
   */
  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);
  }

}

Members