NAME
App::SpamcupNG::Error - base class for Spamcop website errors
SYNOPSIS
use parent 'App::SpamcupNG::Error';
DESCRIPTION
This is a base class to represent error messages after parsing Spamcop HTML.
METHODS
new
Creates a new instance. Instances of App::Spamcup::Error
shouldn't be created directly, use one of the subclasses of it.
Expect as parameters:
- an array reference containing all the strings from the original message. - a scalar with 0 or 1 to indicate that the message should be considered fatal or not.
A message parsed from Spamcop website HTML that should stop the SPAM processing should be considered as fatal.
message
Returns the message associated with the error.
is_fatal
Returns 0 if the error is not fatal, 1 otherwise.
AUTHOR
Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2018 of Alceu Rodrigues de Freitas Junior, <arfreitas@cpan.org>
This file is part of App-SpamcupNG distribution.
App-SpamcupNG is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
App-SpamcupNG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with App-SpamcupNG. If not, see <http://www.gnu.org/licenses/>.