From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

sub signature_error_handler {
my ($class, $msg) = @_;
die bless { message => $msg }, 'My::ExceptionClass';
}
1;