summaryrefslogtreecommitdiff
path: root/platform/www/inc/Action/Exception/ActionDisabledException.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/Action/Exception/ActionDisabledException.php')
-rw-r--r--platform/www/inc/Action/Exception/ActionDisabledException.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/platform/www/inc/Action/Exception/ActionDisabledException.php b/platform/www/inc/Action/Exception/ActionDisabledException.php
new file mode 100644
index 0000000..40a0c7d
--- /dev/null
+++ b/platform/www/inc/Action/Exception/ActionDisabledException.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace dokuwiki\Action\Exception;
+
+/**
+ * Class ActionDisabledException
+ *
+ * Thrown when the requested action has been disabled. Eg. through the 'disableactions'
+ * config setting. You should probably not use it.
+ *
+ * The message will NOT be shown to the enduser, but a generic information will be shown.
+ *
+ * @package dokuwiki\Action\Exception
+ */
+class ActionDisabledException extends ActionException {
+
+}