Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DriverException.php

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\Exception

Code

public function __construct(string $message, int $code = 0, ?\Throwable $previous = null) {
    parent::__construct($message, $code, $previous);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal