Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / Exception / Go.pm
CommitLineData
3fea05b9 1package Catalyst::Exception::Go;
2
3use Moose;
4use namespace::clean -except => 'meta';
5
6with 'Catalyst::Exception::Basic';
7
8has '+message' => (
9 default => "catalyst_go\n",
10);
11
12__PACKAGE__->meta->make_immutable;
13
141;
15
16__END__
17
18=head1 NAME
19
20Catalyst::Exception::Go - Exception for redispatching using $ctx->go()
21
22=head1 DESCRIPTION
23
24This is the class for the Catalyst Exception which is thrown then you call
25C<< $c->go() >>.
26
27This class is not intended to be used directly by users.
28
29=head2 meta
30
31Provided by Moose
32
33=head1 SEE ALSO
34
35=over 4
36
37=item L<Catalyst>
38
39=item L<Catalyst::Exception>
40
41=back
42
43=head1 AUTHORS
44
45Catalyst Contributors, see Catalyst.pm
46
47=head1 COPYRIGHT
48
49This library is free software. You can redistribute it and/or modify
50it under the same terms as Perl itself.
51
52=cut