1package autodie::test::au; 2use strict; 3use warnings; 4 5use parent qw(autodie); 6 7use autodie::test::au::exception; 8 9sub throw { 10 my ($this, @args) = @_; 11 return autodie::test::au::exception->new(@args); 12} 13 141; 15