| 1 | <?php |
||
| 10 | class UnsupportedDriverActionException extends Exception { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Initializes exception. |
||
| 14 | * |
||
| 15 | * @param string $template |
||
| 16 | * What is unsupported? |
||
| 17 | * @param \Drupal\Driver\DriverInterface $driver |
||
| 18 | * Driver instance. |
||
| 19 | * @param int $code |
||
| 20 | * The exception code. |
||
| 21 | * @param \Exception $previous |
||
| 22 | * Previous exception. |
||
| 23 | */ |
||
| 24 | public function __construct($template, DriverInterface $driver, $code = 0, \Exception $previous = NULL) { |
||
| 29 | |||
| 30 | } |
||
| 31 |