—package
Catalyst::Exception;
# XXX: See bottom of file for Exception implementation
=head1 NAME
Catalyst::Exception - Catalyst Exception Class
=head1 SYNOPSIS
Catalyst::Exception->throw( qq/Fatal exception/ );
See also L<Catalyst>.
=head1 DESCRIPTION
This is the Catalyst Exception class.
=head1 METHODS
=head2 throw( $message )
=head2 throw( message => $message )
=head2 throw( error => $error )
Throws a fatal exception.
=head2 meta
Provided by Moose
=head1 AUTHORS
Catalyst Contributors, see Catalyst.pm
=head1 COPYRIGHT
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
{
__PACKAGE__->meta->make_immutable;
}
{
BEGIN {
extends
(
our
$CATALYST_EXCEPTION_CLASS
||
'Catalyst::Exception::Base'
);
}
__PACKAGE__->meta->make_immutable;
}
1;