stub pod for Exception::Go and ::Detach.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Detach.pm
CommitLineData
10133e5b 1package Catalyst::Exception::Detach;
2
3use Moose;
4use namespace::clean -except => 'meta';
5
6extends 'Catalyst::Exception';
7
8has '+message' => (
9 default => "catalyst_detach\n",
10);
11
12__PACKAGE__->meta->make_immutable;
13
141;
47a979b4 15
16__END__
17
18=head1 NAME
19
20Catalyst::Exception::Detach - Exception for redispatching using $ctx->detach()
21
22=cut