NAME

Error::Pure::HTTP::AllError - Error::Pure module with full backtrace over HTTP.

SYNOPSIS

use Error::Pure::HTTP::AllError qw(err);
err "This is a fatal error.", "name", "value";

SUBROUTINES

err(@messages)
Process error with messages @messages.

EXAMPLE1

# Pragmas.
use strict;
use warnings;

# Modules.
use Error::Pure::HTTP::AllError qw(err);

# Error.
err "This is a fatal error.", "name", "value";

# Output like this:
# Content-type: text/plain
#
# ERROR: This is a fatal error.
# name: value
# main  err  ./script.pl  12

EXAMPLE2

# Pragmas.
use strict;
use warnings;

# Modules.
use Error::Pure::HTTP::AllError qw(err);

# Print before.
print "Before\n";

# Error.
err "This is a fatal error.", "name", "value";

# Print after.
print "After\n";

# Output like this:
# Before
# Content-type: text/plain
#
# ERROR: This is a fatal error.
# name: value
# main  err  ./script.pl  12
# After

DEPENDENCIES

Error::Pure::Utils, Error::Pure::Output::Text, Exporter, List::MoreUtils, Readonly.

SEE ALSO

Error::Pure, Error::Pure::AllError, Error::Pure::Die, Error::Pure::Error, Error::Pure::ErrorList, Error::Pure::HTTP::Error, Error::Pure::HTTP::ErrorList, Error::Pure::Output::Text, Error::Pure::Print, Error::Pure::Utils.

REPOSITORY

https://github.com/tupinek/Error-Pure-HTTP

AUTHOR

Michal Špaček mailto:skim@cpan.org

http://skim.cz

LICENSE AND COPYRIGHT

BSD license.

VERSION

0.01