public function DriverException::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/src/Exception/DriverException.php \Behat\Mink\Exception\DriverException::__construct()
Initializes exception.
Parameters
string $message:
int $code:
\Exception|null $previous:
1 call to DriverException::__construct()
- UnsupportedDriverActionException::__construct in vendor/
behat/ mink/ src/ Exception/ UnsupportedDriverActionException.php - Initializes exception.
1 method overrides DriverException::__construct()
- UnsupportedDriverActionException::__construct in vendor/
behat/ mink/ src/ Exception/ UnsupportedDriverActionException.php - Initializes exception.
File
- vendor/
behat/ mink/ src/ Exception/ DriverException.php, line 27
Class
- DriverException
- Exception thrown by drivers when they fail to perform an action.
Namespace
Behat\Mink\ExceptionCode
public function __construct($message, $code = 0, \Exception $previous = null) {
parent::__construct($message, $code, $previous);
}