function RecipePreExistingConfigException::__construct
Constructs a RecipePreExistingConfigException.
Parameters
string $configName: The configuration name that has missing dependencies.
string $message: [optional] The Exception message to throw.
int $code: [optional] The Exception code.
null|\Throwable $previous: [optional] The previous throwable used for the exception chaining.
File
-
core/
lib/ Drupal/ Core/ Recipe/ RecipePreExistingConfigException.php, line 27
Class
- RecipePreExistingConfigException
- Exception thrown when a recipe has configuration that exists already.
Namespace
Drupal\Core\RecipeCode
public function __construct(string $configName, string $message = "", int $code = 0, ?\Throwable $previous = NULL) {
parent::__construct($message, $code, $previous);
}