164ab5140SAndreas Gohr<?php 264ab5140SAndreas Gohr 364ab5140SAndreas Gohrnamespace dokuwiki\Action\Exception; 464ab5140SAndreas Gohr 5e8aa6739SAndreas Gohr/** 6e8aa6739SAndreas Gohr * Class ActionDisabledException 7e8aa6739SAndreas Gohr * 8e8aa6739SAndreas Gohr * Thrown when the requested action has been disabled. Eg. through the 'disableactions' 9e8aa6739SAndreas Gohr * config setting. You should probably not use it. 10e8aa6739SAndreas Gohr * 11e8aa6739SAndreas Gohr * The message will NOT be shown to the enduser, but a generic information will be shown. 12e8aa6739SAndreas Gohr * 13e8aa6739SAndreas Gohr * @package dokuwiki\Action\Exception 14e8aa6739SAndreas Gohr */ 15*8c7c53b0SAndreas Gohrclass ActionDisabledException extends ActionException 16*8c7c53b0SAndreas Gohr{ 1764ab5140SAndreas Gohr 1864ab5140SAndreas Gohr} 19