Updating branch to current revision
[catagits/Catalyst-Runtime.git] / trunk / lib / Catalyst / Exception / Detach.pm
CommitLineData
e28a6876 1package Catalyst::Exception::Detach;
2
3use Moose;
4use namespace::clean -except => 'meta';
5
6with 'Catalyst::Exception::Basic';
7
8has '+message' => (
9 default => "catalyst_detach\n",
10);
11
12__PACKAGE__->meta->make_immutable;
13
141;
15
16__END__
17
18=head1 NAME
19
20Catalyst::Exception::Detach - Exception for redispatching using $ctx->detach()
21
22=head1 DESCRIPTION
23
24This is the class for the Catalyst Exception which is thrown then you call
25C<< $c->detach() >>.
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