Perl::Critic::Exception::AggregateConfiguration - A collection of a set of problems found in the configuration and/or command-line options.



NAME

Perl::Critic::Exception::AggregateConfiguration - A collection of a set of problems found in the configuration and/or command-line options.


DESCRIPTION

A set of configuration settings can have multiple problems. This is an object for collecting all the problems found so that the user can see them in one run.


METHODS

add_exception( $exception )
Accumulate the parameter with rest of the exceptions.

add_exceptions_from( $aggregate )
Accumulate the exceptions from another instance of this class.

exceptions()
Returns a reference to an array of the collected exceptions.

add_exception_or_rethrow( $eval_error )
If the parameter is an instance of the Perl::Critic::Exception::Configuration manpage or the Perl::Critic::Exception::AggregateConfiguration manpage, add it. Otherwise, die with the parameter, if it is a reference, or confess with it. If the parameter is false, simply returns.

has_exceptions()
Answer whether any configuration problems have been found.

full_message()
Concatenate the exception messages. See full_message in the Exception::Class manpage.


AUTHOR

Elliot Shank <perl@galumph.com>


COPYRIGHT

Copyright (c) 2007 Elliot Shank. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module.

 Perl::Critic::Exception::AggregateConfiguration - A collection of a set of problems found in the configuration and/or command-line options.