NAME

Error::Pure::Error - Error::Pure module with error on one line with informations.

SYNOPSIS

use Error::Pure::Error 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::Error qw(err);

# Error.
err '1';

# Output:
# #Error [example1.pl:9] 1

EXAMPLE2

# Pragmas.
use strict;
use warnings;

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

# Error.
err '1', '2', '3';

# Output:
# #Error [example2.pl:9] 1

DEPENDENCIES

Error::Pure::Utils(3pm), Error::Pure::Output::Text(3pm), Exporter(3pm), List::MoreUtils(3pm), Readonly(3pm).

SEE ALSO

Error::Pure(3pm), Error::Pure::AllError(3pm), Error::Pure::Die(3pm), Error::Pure::ErrorList(3pm), Error::Pure::Output::Text(3pm), Error::Pure::Print(3pm), Error::Pure::Utils(3pm).

REPOSITORY

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

AUTHOR

Michal Špaček L<skim@cpan.org>
http://skim.cz

LICENSE AND COPYRIGHT

BSD license.

VERSION

0.02