include our own leak checking code rather than using CatalystX::LeakCheck
[catagits/Catalyst-Runtime.git] / t / lib / TestApp2.pm
CommitLineData
55046410 1package TestApp2;
2use strict;
3use warnings;
4use base qw/Catalyst/;
5use Catalyst qw/Params::Nested/;
6
7__PACKAGE__->config(
43ef8051 8 'name' => 'TestApp2',
9 encoding => 'UTF-8',
1bef5f59 10);
55046410 11
55046410 12__PACKAGE__->setup;
13
14sub handle_unicode_encoding_exception {
15 my ( $self, $param_value, $error_msg ) = @_;
16 return $param_value;
17}
18
191;