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

Breadcrumb

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

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

Code

public function __construct(string $configName, 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