The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

=head1 NAME
Search::Xapian::UnimplementedError - UnimplementedError indicates an attempt to use an unimplemented feature.
=head1 DESCRIPTION
=cut
use 5.006;
use strict;
require DynaLoader;
# For compatibility with XS Search::Xapian < 1.2.3 which still threw strings
# in some cases.
use overload '""' => sub { "Exception: ".$_[0]->get_msg };
our @ISA = qw(DynaLoader Search::Xapian::LogicError);
1;