function BadPluginDefinitionException::__construct
Same name in other branches
- 9 core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php \Drupal\migrate\Plugin\Exception\BadPluginDefinitionException::__construct()
- 8.9.x core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php \Drupal\migrate\Plugin\Exception\BadPluginDefinitionException::__construct()
- 10 core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php \Drupal\migrate\Plugin\Exception\BadPluginDefinitionException::__construct()
Constructs a BadPluginDefinitionException.
Parameters
string $plugin_id: The plugin ID of the mapper.
string $property: The name of the property that is missing from the plugin.
int $code: (optional) The exception code. Defaults to 0.
\Exception|null $previous: The previous throwable used for exception chaining.
Overrides InvalidPluginDefinitionException::__construct
See also
\Exception
File
-
core/
modules/ migrate/ src/ Plugin/ Exception/ BadPluginDefinitionException.php, line 26
Class
- BadPluginDefinitionException
- Defines a class for bad plugin definition exceptions.
Namespace
Drupal\migrate\Plugin\ExceptionCode
public function __construct($plugin_id, $property, $code = 0, ?\Exception $previous = NULL) {
$message = sprintf('The %s plugin must define the %s property.', $plugin_id, $property);
parent::__construct($plugin_id, $message, $code, $previous);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.