X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FException%2FGo.pm;h=f7d736213cc94b2ad5d124a2bd95ba4ffe66d5f3;hb=c63ec19d30f54b6fa44dff3e448108ab2e15ae84;hp=612be248f453a600aac5259d5a5e99f8a9de2c86;hpb=10133e5bb738e3f5e5a115e77a191304185a11a7;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Exception/Go.pm b/lib/Catalyst/Exception/Go.pm index 612be24..f7d7362 100644 --- a/lib/Catalyst/Exception/Go.pm +++ b/lib/Catalyst/Exception/Go.pm @@ -3,7 +3,7 @@ package Catalyst::Exception::Go; use Moose; use namespace::clean -except => 'meta'; -extends 'Catalyst::Exception'; +with 'Catalyst::Exception::Basic'; has '+message' => ( default => "catalyst_go\n", @@ -12,3 +12,41 @@ has '+message' => ( __PACKAGE__->meta->make_immutable; 1; + +__END__ + +=head1 NAME + +Catalyst::Exception::Go - Exception for redispatching using $ctx->go() + +=head1 DESCRIPTION + +This is the class for the Catalyst Exception which is thrown then you call +C<< $c->go() >>. + +This class is not intended to be used directly by users. + +=head2 meta + +Provided by Moose + +=head1 SEE ALSO + +=over 4 + +=item L + +=item L + +=back + +=head1 AUTHORS + +Catalyst Contributors, see Catalyst.pm + +=head1 COPYRIGHT + +This library is free software. You can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut