Modified source files and compiled any and armel versions of packages
[pkg-perl] / deb-src / libperl-critic-perl / libperl-critic-perl-1.088 / lib / Perl / Critic / Exception / Configuration / Option / Global.pm
1 ##############################################################################
2 #      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/lib/Perl/Critic/Exception/Configuration/Option/Global.pm $
3 #     $Date: 2008-07-03 10:19:10 -0500 (Thu, 03 Jul 2008) $
4 #   $Author: clonezone $
5 # $Revision: 2489 $
6 ##############################################################################
7
8 package Perl::Critic::Exception::Configuration::Option::Global;
9
10 use 5.006001;
11 use strict;
12 use warnings;
13
14 our $VERSION = '1.088';
15
16 #-----------------------------------------------------------------------------
17
18 use Exception::Class (
19     'Perl::Critic::Exception::Configuration::Option::Global' => {
20         isa         => 'Perl::Critic::Exception::Configuration::Option',
21         description => 'A problem with global Perl::Critic configuration.',
22     },
23 );
24
25 #-----------------------------------------------------------------------------
26
27 1;
28
29 __END__
30
31 #-----------------------------------------------------------------------------
32
33 =pod
34
35 =for stopwords
36
37 =head1 NAME
38
39 Perl::Critic::Exception::Configuration::Option::Global - A problem with L<Perl::Critic> global configuration.
40
41 =head1 DESCRIPTION
42
43 A representation of a problem found with the global configuration of
44 L<Perl::Critic>, whether from a F<.perlcriticrc>, another profile
45 file, or command line.
46
47 This is an abstract class.  It should never be instantiated.
48
49
50 =head1 AUTHOR
51
52 Elliot Shank <perl@galumph.com>
53
54 =head1 COPYRIGHT
55
56 Copyright (c) 2007-2008 Elliot Shank.  All rights reserved.
57
58 This program is free software; you can redistribute it and/or modify
59 it under the same terms as Perl itself.  The full text of this license
60 can be found in the LICENSE file included with this module.
61
62 =cut
63
64 # Local Variables:
65 #   mode: cperl
66 #   cperl-indent-level: 4
67 #   fill-column: 78
68 #   indent-tabs-mode: nil
69 #   c-indentation-style: bsd
70 # End:
71 # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :