moved component name sort that happens in setup_components to locate_components to...
[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
c4b74171 13BEGIN { $Catalyst::Exception::CATALYST_EXCEPTION_CLASS = 'TestAppClassExceptionSimpleTest::Exception'; }
08f9c848 14
c4b74171 15use Catalyst;
08f9c848 16
08f9c848 17__PACKAGE__->setup;
18
08f9c848 191;