Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
21
web/vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php
vendored
Normal file
21
web/vendor/jcalderonzumba/gastonjs/src/Exception/DeadClient.php
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?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);
|
||||
}
|
||||
}
|
Reference in a new issue