You are here

class TimeoutError in Zircon Profile 8.0

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

Class TimeoutError @package Zumba\GastonJS\Exception

Hierarchy

  • class \Zumba\GastonJS\Exception\TimeoutError extends \Zumba\GastonJS\Exception\Exception

Expanded class hierarchy of TimeoutError

File

vendor/jcalderonzumba/gastonjs/src/Exception/TimeoutError.php, line 9

Namespace

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

  /**
   * @param string $message
   */
  public function __construct($message) {
    $errorMessage = "Timed out waiting for response to {$message}. It's possible that this happened\n            because something took a very long time(for example a page load was slow).\n            If so, setting the Poltergeist :timeout option to a higher value will help\n            (see the docs for details). If increasing the timeout does not help, this is\n            probably a bug in Poltergeist - please report it to the issue tracker.";
    parent::__construct($errorMessage);
  }

}

Members