The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Meta::Error::Root - extend Error::Root.

COPYRIGHT

Copyright (C) 2001, 2002 Mark Veltzer; All rights reserved.

LICENSE

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.

DETAILS

        MANIFEST: Root.pm
        PROJECT: meta
        VERSION: 0.00

SYNOPSIS

        package foo;
        use Meta::Error::Root qw();
        my($object)=Meta::Error::Root->new();
        my($result)=$object->method();

DESCRIPTION

This class extends the functionality of Error::Root. Currently it does nothing extra.

FUNCTIONS

        BEGIN()
        stringify($@)
        TEST($)

FUNCTION DOCUMENTATION

BEGIN()

Provides initialization code which makes the Error.pm module run in debug mode.

stringify($@)

Overloads the default stringify method to make errors more verbose.

TEST($)

Test suite for this module.

SUPER CLASSES

Error::Simple(3)

BUGS

None.

AUTHOR

        Name: Mark Veltzer
        Email: mailto:veltzer@cpan.org
        WWW: http://www.veltzer.org
        CPAN id: VELTZER

HISTORY

        0.00 MV md5 issues

SEE ALSO

Error(3), strict(3)

TODO

-make a base class in Meta for errors (Meta::Error::Root) and have this class inherit from it. move the stringify method to that class.