function InvalidPluginDefinitionException::__construct
Constructs an InvalidPluginDefinitionException.
Parameters
string $plugin_id: The plugin ID of the mapper.
string $message: The exception message.
int $code: The exception code.
\Exception|null $previous: The previous throwable used for exception chaining.
See also
\Exception
2 calls to InvalidPluginDefinitionException::__construct()
- BadPluginDefinitionException::__construct in core/
modules/ migrate/ src/ Plugin/ Exception/ BadPluginDefinitionException.php - Constructs a BadPluginDefinitionException.
- BadPluginDefinitionException::__construct in core/
modules/ migrate/ src/ Plugin/ Exception/ BadPluginDefinitionException.php - Constructs a BadPluginDefinitionException.
1 method overrides InvalidPluginDefinitionException::__construct()
- BadPluginDefinitionException::__construct in core/
modules/ migrate/ src/ Plugin/ Exception/ BadPluginDefinitionException.php - Constructs a BadPluginDefinitionException.
File
-
core/
lib/ Drupal/ Component/ Plugin/ Exception/ InvalidPluginDefinitionException.php, line 31
Class
- InvalidPluginDefinitionException
- Defines a class for invalid plugin definition exceptions.
Namespace
Drupal\Component\Plugin\ExceptionCode
public function __construct($plugin_id, $message = '', $code = 0, ?\Exception $previous = NULL) {
$this->pluginId = $plugin_id;
parent::__construct($message, $code, $previous);
}