The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package autodie::test::au;
use strict;
use warnings;

use base qw(autodie);

use autodie::test::au::exception;

sub throw {
    my ($this, @args) = @_;
    return autodie::test::au::exception->new(@args);
}

1;