ActionDisabledException.php 421 B

1234567891011121314151617
  1. <?php
  2. namespace dokuwiki\Action\Exception;
  3. /**
  4. * Class ActionDisabledException
  5. *
  6. * Thrown when the requested action has been disabled. Eg. through the 'disableactions'
  7. * config setting. You should probably not use it.
  8. *
  9. * The message will NOT be shown to the enduser, but a generic information will be shown.
  10. *
  11. * @package dokuwiki\Action\Exception
  12. */
  13. class ActionDisabledException extends ActionException {
  14. }