xref: /dokuwiki/inc/Action/Exception/ActionAclRequiredException.php (revision 3c72355e47ff673d5946eec9d8b9d8f0c93cb05c)
1<?php
2
3namespace dokuwiki\Action\Exception;
4
5/**
6 * Class ActionAclRequiredException
7 *
8 * Thrown by AbstractACLAction when an action requires that the ACL subsystem is
9 * enabled but it isn't. You should not use it
10 *
11 * The message will NOT be shown to the enduser
12 *
13 * @package dokuwiki\Action\Exception
14 */
15class ActionAclRequiredException extends ActionException {
16
17}
18