xref: /dokuwiki/inc/Search/Exception/IndexLockException.php (revision 1db169408cb6f6c0deb6231d57207dd563f36013)
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    }
137fcedc39SAndreas Gohr
1415f699acSAndreas Gohr}
15