Version 1
[yaffs-website] / web / core / lib / Drupal / Core / Updater / UpdaterException.php
diff --git a/web/core/lib/Drupal/Core/Updater/UpdaterException.php b/web/core/lib/Drupal/Core/Updater/UpdaterException.php
new file mode 100644 (file)
index 0000000..befc78c
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+namespace Drupal\Core\Updater;
+
+/**
+ * Defines a Exception class for the Drupal\Core\Updater\Updater class
+ * hierarchy.
+ *
+ * This is identical to the base Exception class, we just give it a more
+ * specific name so that call sites that want to tell the difference can
+ * specifically catch these exceptions and treat them differently.
+ */
+class UpdaterException extends \Exception {}