1<?php 2 3namespace Facebook\WebDriver\Exception; 4 5/** 6 * The driver server process is unexpectedly no longer available. 7 */ 8class DriverServerDiedException extends WebDriverException 9{ 10 public function __construct(\Exception $previous = null) 11 { 12 parent::__construct('The driver server has died.'); 13 \Exception::__construct($this->getMessage(), $this->getCode(), $previous); 14 } 15} 16