gallerymaker/modules/error.pod

31 lines
382 B
Text
Raw Permalink Normal View History

2014-12-12 02:58:53 +00:00
=head1 NAME
error - Error Objects
=head1 SYNOPSIS
eval {
die "I'm dead";
};
print STDERR $@->message;
=head1 DESCRIPTION
Error Objects are automaticly created when die/warn is used.
=head2 Object Methods
=over 4
=item * message
Returns the error message. This includes a full dump of the stack.
=back
=head1 AUTHOR
Gerard Goossen E<lt>gerard@tty.nlE<gt>
=cut