Add exception classes for the redispatching exceptions.
[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 extends 'Catalyst::Exception';
7
8 has '+message' => (
9     default => "catalyst_go\n",
10 );
11
12 __PACKAGE__->meta->make_immutable;
13
14 1;