ACME::Error::SHOUT - ACME::Error Backend to Scream Errors


ACME-Error documentation Contained in the ACME-Error distribution.

Index


Code Index:

NAME

Top

ACME::Error::SHOUT - ACME::Error Backend to Scream Errors

SYNOPSIS

Top

  use ACME::Error SHOUT;

DESCRIPTION

Top

This backend converts your errors to screams.

AUTHOR

Top

Casey West <casey@geeknest.com>

COPYRIGHT

Top

SEE ALSO

Top

perl(1).


ACME-Error documentation Contained in the ACME-Error distribution.

package ACME::Error::SHOUT;

use strict;
no  strict 'refs';

use vars qw[$VERSION];
$VERSION = '0.02';

*warn_handler = *die_handler = sub {
  my @error = @_;
  $error[$_] =~ s/.$/!/g for 0 .. $#error;
  return map uc, @error;
};

1;
__END__
# Below is stub documentation for your module. You better edit it!