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=fe1f5fdb4046d10742588606fd392e89712fb66f;hp=02610a472abfc9b90556f3b634a68e64dcfd2069;hb=536bee890cf24e0e4bcda7562e7b70cc03ca0620;hpb=9f6c5fdc8776506a0183270cfe64f4442e4ced13 diff --git a/lib/Catalyst/Exception.pm b/lib/Catalyst/Exception.pm index 02610a4..fe1f5fd 100644 --- a/lib/Catalyst/Exception.pm +++ b/lib/Catalyst/Exception.pm @@ -48,18 +48,19 @@ sub throw { Provided by Moose -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Christian Hansen, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify +This library is free software. You can redistribute it and/or modify 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;