[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Action/Exception/ -> ActionDisabledException.php (source)

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