NAME

Error::Pure::ANSIColor::AllError - Error::Pure module with full backtrace.

SYNOPSIS

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

SUBROUTINES

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

EXAMPLE

use strict;
use warnings;

use Error::Pure::ANSIColor::AllError qw(err);

print "1\n";
err "This is a fatal error.", "name", "value";
print "2\n";

# Output:
# 1
# ERROR: This is a fatal error.
# name: value
# main  err  ./script.pl  12

DEPENDENCIES

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

SEE ALSO

Task::Error::Pure

Install the Error::Pure modules.

REPOSITORY

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

AUTHOR

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

http://skim.cz

LICENSE AND COPYRIGHT

© 2013-2017 Michal Špaček
BSD 2-Clause License

VERSION

0.01