File Coverage

blib/lib/Perl/Critic/Exception/Configuration/Option/Global.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Perl::Critic::Exception::Configuration::Option::Global;
2              
3 40     40   26678 use 5.010001;
  40         177  
4 40     40   230 use strict;
  40         91  
  40         816  
5 40     40   240 use warnings;
  40         123  
  40         2375  
6              
7             our $VERSION = '1.146';
8              
9             #-----------------------------------------------------------------------------
10              
11             use Exception::Class (
12 40         396 'Perl::Critic::Exception::Configuration::Option::Global' => {
13             isa => 'Perl::Critic::Exception::Configuration::Option',
14             description => 'A problem with global Perl::Critic configuration.',
15             },
16 40     40   296 );
  40         150  
17              
18             #-----------------------------------------------------------------------------
19              
20             1;
21              
22             __END__
23              
24             #-----------------------------------------------------------------------------
25              
26             =pod
27              
28             =for stopwords
29              
30             =head1 NAME
31              
32             Perl::Critic::Exception::Configuration::Option::Global - A problem with L<Perl::Critic|Perl::Critic> global configuration.
33              
34             =head1 DESCRIPTION
35              
36             A representation of a problem found with the global configuration of
37             L<Perl::Critic|Perl::Critic>, whether from a F<.perlcriticrc>, another
38             profile file, or command line.
39              
40             This is an abstract class. It should never be instantiated.
41              
42              
43             =head1 INTERFACE SUPPORT
44              
45             This is considered to be a public class. Any changes to its interface
46             will go through a deprecation cycle.
47              
48              
49             =head1 AUTHOR
50              
51             Elliot Shank <perl@galumph.com>
52              
53             =head1 COPYRIGHT
54              
55             Copyright (c) 2007-2011 Elliot Shank.
56              
57             This program is free software; you can redistribute it and/or modify
58             it under the same terms as Perl itself. The full text of this license
59             can be found in the LICENSE file included with this module.
60              
61             =cut
62              
63             # Local Variables:
64             # mode: cperl
65             # cperl-indent-level: 4
66             # fill-column: 78
67             # indent-tabs-mode: nil
68             # c-indentation-style: bsd
69             # End:
70             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :