about summary refs log tree commit diff stats
path: root/wiki/inc/Action/Exception/ActionAbort.php
diff options
context:
space:
mode:
Diffstat (limited to 'wiki/inc/Action/Exception/ActionAbort.php')
-rw-r--r--wiki/inc/Action/Exception/ActionAbort.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/wiki/inc/Action/Exception/ActionAbort.php b/wiki/inc/Action/Exception/ActionAbort.php
deleted file mode 100644
index 9c188bb..0000000
--- a/wiki/inc/Action/Exception/ActionAbort.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?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 {
-
-}