115f699acSAndreas Gohr<?php 215f699acSAndreas Gohr 315f699acSAndreas Gohrnamespace dokuwiki\Search\Exception; 415f699acSAndreas Gohr 515f699acSAndreas Gohrclass IndexLockException extends SearchException 615f699acSAndreas Gohr{ 77fcedc39SAndreas Gohr /** @inheritdoc */ 8*1db16940SAndreas Gohr public function __construct($message = "", $code = 0, ?\Throwable $previous = null) 97fcedc39SAndreas Gohr { 107fcedc39SAndreas Gohr if ($message == '') $message = 'Index not locked for writing'; 117fcedc39SAndreas Gohr parent::__construct($message, $code, $previous); 127fcedc39SAndreas Gohr } 1315f699acSAndreas Gohr} 14