You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
368 B

  1. <?php
  2. namespace dokuwiki\Action\Exception;
  3. /**
  4. * Class ActionUserRequiredException
  5. *
  6. * Thrown by AbstractUserAction when an action requires that a user is logged
  7. * in 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 ActionUserRequiredException extends ActionException
  14. {
  15. }