update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestAppClassExceptionSimpleTest.pm
CommitLineData
08f9c848 1package TestAppClassExceptionSimpleTest::Exception;
08f9c848 2use strict;
3use warnings;
08f9c848 4
c4b74171 5sub throw {}
08f9c848 6
7#########
8
9package TestAppClassExceptionSimpleTest;
08f9c848 10use strict;
11use warnings;
08f9c848 12
41a8bf1f 13use Catalyst::Utils; #< some of the scripts use Catalyst::Utils before MyApp.pm
14
c4b74171 15BEGIN { $Catalyst::Exception::CATALYST_EXCEPTION_CLASS = 'TestAppClassExceptionSimpleTest::Exception'; }
08f9c848 16
c4b74171 17use Catalyst;
08f9c848 18
08f9c848 19__PACKAGE__->setup;
20
08f9c848 211;