
Catalyst::Exception::Basic - Basic Catalyst Exception Role

package My::Exception; use Moose; use namespace::clean -except => 'meta'; with 'Catalyst::Exception::Basic'; # Elsewhere.. My::Exception->throw( qq/Fatal exception/ );
See also Catalyst and Catalyst::Exception.

This is the basic Catalyst Exception role which implements all of Catalyst::Exception::Interface.

Holds the exception message.

Stringifies the exception's message attribute. Called when the object is stringified by overloading.
Throws a fatal exception.
Rethrows a caught exception.
Provided by Moose

Catalyst Contributors, see Catalyst.pm

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.