Catalyst::Exception::Go - Exception for redispatching using $ctx->go()


Catalyst-Runtime documentation Contained in the Catalyst-Runtime distribution.

Index


Code Index:

NAME

Top

Catalyst::Exception::Go - Exception for redispatching using $ctx->go()

DESCRIPTION

Top

This is the class for the Catalyst Exception which is thrown then you call $c->go().

This class is not intended to be used directly by users.

meta

Provided by Moose

SEE ALSO

Top

Catalyst
Catalyst::Exception

AUTHORS

Top

Catalyst Contributors, see Catalyst.pm

COPYRIGHT

Top


Catalyst-Runtime documentation Contained in the Catalyst-Runtime distribution.

package Catalyst::Exception::Go;

use Moose;
use namespace::clean -except => 'meta';

with 'Catalyst::Exception::Basic';

has '+message' => (
    default => "catalyst_go\n",
);

__PACKAGE__->meta->make_immutable;

1;

__END__