Fix a doc typo.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Go.pm
CommitLineData
10133e5b 1package Catalyst::Exception::Go;
2
3use Moose;
4use namespace::clean -except => 'meta';
5
ede5238f 6with 'Catalyst::Exception::Basic';
10133e5b 7
8has '+message' => (
9 default => "catalyst_go\n",
10);
11
12__PACKAGE__->meta->make_immutable;
13
141;
47a979b4 15
16__END__
17
18=head1 NAME
19
20Catalyst::Exception::Go - Exception for redispatching using $ctx->go()
21
b6c6af73 22=head1 SYNOPSIS
23
24 Do not use this class directly, instead you should use the singleton instance
25 found in $Catalyst::GO;
a62b43cd 26
b6c6af73 27 E.g. die $Catalyst::GO;
a62b43cd 28
b6c6af73 29See also L<Catalyst> and L<Catalyst::Exception>.
30
31=head1 DESCRIPTION
32
33This is the class for the Catalyst Exception which is thrown then you call
34C<< $c->go() >>. There should be a singleton instance of this class in the
35C<< $Catalyst::DETACH >> global variable.
36
37Users should never need to know or care about this exception, please just use
38C<< $c->detach >>
39
40=head2 meta
41
42Provided by Moose
43
44=head1 AUTHORS
45
46Catalyst Contributors, see Catalyst.pm
47
48=head1 COPYRIGHT
49
50This library is free software. You can redistribute it and/or modify
51it under the same terms as Perl itself.
52
47a979b4 53=cut