Mercurial > hg > isophonics-drupal-site
view vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Zumba\GastonJS\Exception; /** * Class DeadClient * @package Zumba\GastonJS\Exception */ 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); } }