115f699acSAndreas Gohr<?php 215f699acSAndreas Gohr 315f699acSAndreas Gohrnamespace dokuwiki\Search\Exception; 415f699acSAndreas Gohr 515f699acSAndreas Gohrclass IndexLockException extends SearchException 615f699acSAndreas Gohr{ 7*7fcedc39SAndreas Gohr /** @inheritdoc */ 8*7fcedc39SAndreas Gohr public function __construct($message = "", $code = 0, \Throwable $previous = null) 9*7fcedc39SAndreas Gohr { 10*7fcedc39SAndreas Gohr if($message == '') $message = 'Index not locked for writing'; 11*7fcedc39SAndreas Gohr parent::__construct($message, $code, $previous); 12*7fcedc39SAndreas Gohr } 13*7fcedc39SAndreas Gohr 1415f699acSAndreas Gohr} 15