<?phpnamespaceShaarli\Config\Exception;/** * Exception used if an unauthorized attempt to edit configuration has been made. */classUnauthorizedConfigExceptionextends\Exception{/** * Construct exception. */publicfunction__construct(){$this->message=t('You are not authorized to alter config.');}}