summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Exception/ActionAbort.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Action/Exception/ActionAbort.php')
-rw-r--r--platform/www/inc/Action/Exception/ActionAbort.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/www/inc/Action/Exception/ActionAbort.php b/platform/www/inc/Action/Exception/ActionAbort.php
new file mode 100644
index 0000000..9c188bb
--- /dev/null
+++ b/platform/www/inc/Action/Exception/ActionAbort.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace dokuwiki\Action\Exception;
+
+/**
+ * Class ActionAbort
+ *
+ * Strictly speaking not an Exception but an expected execution path. Used to
+ * signal when one action is done and another should take over.
+ *
+ * If you want to signal the same but under some error condition use ActionException
+ * or one of it's decendants.
+ *
+ * The message will NOT be shown to the enduser
+ *
+ * @package dokuwiki\Action\Exception
+ */
+class ActionAbort extends ActionException {
+
+}