Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / migrate / src / Plugin / Exception / BadPluginDefinitionException.php
diff --git a/web/core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php b/web/core/modules/migrate/src/Plugin/Exception/BadPluginDefinitionException.php
new file mode 100644 (file)
index 0000000..5387f97
--- /dev/null
@@ -0,0 +1,29 @@
+<?php
+
+namespace Drupal\migrate\Plugin\Exception;
+
+use Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException;
+
+/**
+ * Defines a class for bad plugin definition exceptions.
+ */
+class BadPluginDefinitionException extends InvalidPluginDefinitionException {
+
+  /**
+   * Constructs a BadPluginDefinitionException.
+   *
+   * For the remaining parameters see \Exception.
+   *
+   * @param string $plugin_id
+   *   The plugin ID of the mapper.
+   * @param string $property
+   *   The name of the property that is missing from the plugin.
+   *
+   * @see \Exception
+   */
+  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);
+  }
+
+}