function DriverException::__construct
Initializes exception.
Parameters
string $message:
int $code:
\Throwable|null $previous:
2 calls to DriverException::__construct()
- UnsupportedDriverActionException::__construct in vendor/
behat/ mink/ src/ Exception/ UnsupportedDriverActionException.php - Initializes exception.
- 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(string $message, int $code = 0, ?\Throwable $previous = null) {
parent::__construct($message, $code, $previous);
}