File Coverage

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