Provided by: liblucy-perl_0.3.3-8_amd64 

NAME
Lucy::Store::LockErr - Lock exception.
SYNOPSIS
while (1) {
my $bg_merger = eval {
Lucy::Index::BackgroundMerger->new( index => $index );
};
if ( blessed($@) and $@->isa("Lucy::Store::LockErr") ) {
warn "Retrying...\n";
}
elsif (!$bg_merger) {
# Re-throw.
die "Failed to open BackgroundMerger: $@";
}
...
}
DESCRIPTION
LockErr is a subclass of Err which indicates that a file locking problem occurred.
INHERITANCE
Lucy::Store::LockErr isa Lucy::Object::Err isa Lucy::Object::Obj.
perl v5.26.0 2017-08-02 Lucy::Store::LockErr(3pm)