X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FException.pm;h=41b411ae9ecd9c2f013c964e1a2e882d24a69945;hp=02610a472abfc9b90556f3b634a68e64dcfd2069;hb=2f3812528068bc1d9f7840067f0c03d36cd47e6d;hpb=9f6c5fdc8776506a0183270cfe64f4442e4ced13 diff --git a/lib/Catalyst/Exception.pm b/lib/Catalyst/Exception.pm index 02610a4..41b411a 100644 --- a/lib/Catalyst/Exception.pm +++ b/lib/Catalyst/Exception.pm @@ -48,10 +48,9 @@ sub throw { Provided by Moose -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Christian Hansen, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -60,6 +59,8 @@ it under the same terms as Perl itself. =cut +Catalyst::Exception::Base->meta->make_immutable; + package Catalyst::Exception; use Moose; @@ -69,4 +70,7 @@ BEGIN { extends($CATALYST_EXCEPTION_CLASS || 'Catalyst::Exception::Base'); } +no Moose; +__PACKAGE__->meta->make_immutable; + 1;