class DriverException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/src/Exception/DriverException.php \Behat\Mink\Exception\DriverException
Exception thrown by drivers when they fail to perform an action.
@author Konstantin Kudryashov <ever.zet@gmail.com>
Hierarchy
- class \Behat\Mink\Exception\Exception
- class \Behat\Mink\Exception\Exception
- class \Behat\Mink\Exception\DriverException
- class \Behat\Mink\Exception\Exception
Expanded class hierarchy of DriverException
10 files declare their use of DriverException
- BasePhantomJSDriver.php in vendor/
jcalderonzumba/ mink-phantomjs-driver/ src/ BasePhantomJSDriver.php - BrowserKitDriver.php in vendor/
behat/ mink-browserkit-driver/ src/ BrowserKitDriver.php - DriverInterface.php in vendor/
behat/ mink/ src/ Driver/ DriverInterface.php - FormManipulationTrait.php in vendor/
jcalderonzumba/ mink-phantomjs-driver/ src/ FormManipulationTrait.php - JavascriptTrait.php in vendor/
jcalderonzumba/ mink-phantomjs-driver/ src/ JavascriptTrait.php
File
- vendor/
behat/ mink/ src/ Exception/ DriverException.php, line 18
Namespace
Behat\Mink\ExceptionView source
class DriverException extends Exception {
/**
* Initializes exception.
*
* @param string $message
* @param int $code
* @param \Exception|null $previous
*/
public function __construct($message, $code = 0, \Exception $previous = null) {
parent::__construct($message, $code, $previous);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DriverException:: |
public | function | Initializes exception. | 1 |