NAME
Error::Pure::ANSIColor::ErrorList - Error::Pure module with list of errors in one line with informations.
SYNOPSIS
use Error::Pure::ANSIColor::ErrorList qw(err);
err "This is a fatal error.", "name", "value";
# __or__
use Error::Pure qw(err);
$ENV{'ERROR_PURE_TYPE'} = 'ANSIColor::ErrorList';
err "This is a fatal error.", "name", "value";
SUBROUTINES
err
err 'This is a fatal error', 'name', 'value';
Process error with messages (error, error_key/value pairs).
EXAMPLE1
use strict;
use warnings;
use Error::Pure::ANSIColor::ErrorList qw(err);
# Error.
err '1';
# Output:
# #Error [example1.pl:9] 1
EXAMPLE2
use strict;
use warnings;
use Error::Pure::ANSIColor::ErrorList qw(err);
# Error.
err '1', '2', '3';
# Output:
# #Error [example2.pl:9] 1
EXAMPLE3
use strict;
use warnings;
use English qw(-no_match_vars);
use Error::Pure::ANSIColor::ErrorList qw(err);
# Error.
eval { err "1"; };
if ($EVAL_ERROR) {
err "2";
}
# Output:
# #Error [example3.pl:10] 1
# #Error [example3.pl:11] 2
DEPENDENCIES
Error::Pure::Utils, Error::Pure::Output::Text, Exporter, List::Util, Readonly.
SEE ALSO
- Task::Error::Pure
-
Install the Error::Pure modules.
REPOSITORY
https://github.com/michal-josef-spacek/Error-Pure-ANSIColor
AUTHOR
Michal Josef Špaček mailto:skim@cpan.org
LICENSE AND COPYRIGHT
© 2013-2022 Michal Josef Špaček
BSD 2-Clause License
VERSION
0.29