![]() |
![]()
| ![]() |
![]()
NAMECatalyst::Exception::Basic - Basic Catalyst Exception Role SYNOPSISpackage 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. DESCRIPTIONThis is the basic Catalyst Exception role which implements all of Catalyst::Exception::Interface. ATTRIBUTESmessageHolds the exception message. METHODSas_stringStringifies the exception's message attribute. Called when the object is stringified by overloading. throw( $message )throw( message => $message )throw( error => $error )Throws a fatal exception. rethrow( $exception )Rethrows a caught exception. metaProvided by Moose AUTHORSCatalyst Contributors, see Catalyst.pm COPYRIGHTThis library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
|