Add Exception::Interface and Exception::Basic. Make ::Base, ::Go and ::Detach use...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Go.pm
1 package Catalyst::Exception::Go;
2
3 use Moose;
4 use namespace::clean -except => 'meta';
5
6 with 'Catalyst::Exception::Basic';
7
8 has '+message' => (
9     default => "catalyst_go\n",
10 );
11
12 __PACKAGE__->meta->make_immutable;
13
14 1;
15
16 __END__
17
18 =head1 NAME
19
20 Catalyst::Exception::Go - Exception for redispatching using $ctx->go()
21
22 =cut