Add exception classes for the redispatching exceptions.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Exception / Go.pm
CommitLineData
10133e5b 1package Catalyst::Exception::Go;
2
3use Moose;
4use namespace::clean -except => 'meta';
5
6extends 'Catalyst::Exception';
7
8has '+message' => (
9 default => "catalyst_go\n",
10);
11
12__PACKAGE__->meta->make_immutable;
13
141;