You are here

public function PluginNotFoundException::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Plugin/Exception/PluginNotFoundException.php \Drupal\Component\Plugin\Exception\PluginNotFoundException::__construct()

Construct a PluginNotFoundException exception.

Parameters

string $plugin_id: The plugin ID that was not found.

string $message: The exception message.

int $code: The exception code.

\Exception|null $previous: The previous throwable used for exception chaining.

See also

\Exception

File

core/lib/Drupal/Component/Plugin/Exception/PluginNotFoundException.php, line 24

Class

PluginNotFoundException
Plugin exception class to be thrown when a plugin ID could not be found.

Namespace

Drupal\Component\Plugin\Exception

Code

public function __construct($plugin_id, $message = '', $code = 0, \Exception $previous = NULL) {
  if (empty($message)) {
    $message = sprintf("Plugin ID '%s' was not found.", $plugin_id);
  }
  parent::__construct($message, $code, $previous);
}