xref: /dokuwiki/inc/Search/Exception/IndexLockException.php (revision 9369b4a991666bc911474806b106d8958e79f4c1)
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