ActionAclRequiredException.php 374 B

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