Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Exception/CommandNotFoundException.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
19 class CommandNotFoundException extends \InvalidArgumentException implements ExceptionInterface | 19 class CommandNotFoundException extends \InvalidArgumentException implements ExceptionInterface |
20 { | 20 { |
21 private $alternatives; | 21 private $alternatives; |
22 | 22 |
23 /** | 23 /** |
24 * @param string $message Exception message to throw | 24 * @param string $message Exception message to throw |
25 * @param array $alternatives List of similar defined names | 25 * @param array $alternatives List of similar defined names |
26 * @param int $code Exception code | 26 * @param int $code Exception code |
27 * @param Exception $previous previous exception used for the exception chaining | 27 * @param \Exception $previous Previous exception used for the exception chaining |
28 */ | 28 */ |
29 public function __construct($message, array $alternatives = array(), $code = 0, \Exception $previous = null) | 29 public function __construct($message, array $alternatives = array(), $code = 0, \Exception $previous = null) |
30 { | 30 { |
31 parent::__construct($message, $code, $previous); | 31 parent::__construct($message, $code, $previous); |
32 | 32 |