X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FException%2FBasic.pm;h=713bb5fcebbb4bdc40e463bd831e4d73250cd9ac;hb=c463b49c849c28a6fa46e9eb1c07a31b51696f1d;hp=6530a6ff41c1201c37a51cde450107937073fd8d;hpb=80e287baec94d765da86c3f208e8590a2b568060;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Exception/Basic.pm b/lib/Catalyst/Exception/Basic.pm index 6530a6f..713bb5f 100644 --- a/lib/Catalyst/Exception/Basic.pm +++ b/lib/Catalyst/Exception/Basic.pm @@ -43,3 +43,65 @@ sub rethrow { } 1; + +=head1 NAME + +Catalyst::Exception::Basic - Basic Catalyst Exception Role + +=head1 SYNOPSIS + + package My::Exception; + use Moose; + use namespace::clean -except => 'meta'; + + with 'Catalyst::Exception::Basic'; + + # Elsewhere.. + My::Exception->throw( qq/Fatal exception/ ); + +See also L and L. + +=head1 DESCRIPTION + +This is the basic Catalyst Exception role which implements all of +L. + +=head1 ATTRIBUTES + +=head2 message + +Holds the exception message. + +=head1 METHODS + +=head2 as_string + +Stringifies the exception's message attribute. +Called when the object is stringified by overloading. + +=head2 throw( $message ) + +=head2 throw( message => $message ) + +=head2 throw( error => $error ) + +Throws a fatal exception. + +=head2 rethrow( $exception ) + +Rethrows a caught 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