You are here

class DriverException in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

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

... See full list

File

vendor/behat/mink/src/Exception/DriverException.php, line 18

Namespace

Behat\Mink\Exception
View 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

Namesort descending Modifiers Type Description Overrides
DriverException::__construct public function Initializes exception. 1