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