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.pm
1 ##############################################################################
2 #      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/lib/Perl/Critic/Exception/Configuration.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;
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' => {
20         isa         => 'Perl::Critic::Exception',
21         description => 'A problem with Perl::Critic configuration, whether from a file or a command line or some other source.',
22         fields      => [ qw{ source } ],
23     },
24 );
25
26 #-----------------------------------------------------------------------------
27
28 1;
29
30 __END__
31
32 #-----------------------------------------------------------------------------
33
34 =pod
35
36 =for stopwords
37
38 =head1 NAME
39
40 Perl::Critic::Exception::Configuration - A problem with L<Perl::Critic> configuration.
41
42 =head1 DESCRIPTION
43
44 A representation of a problem found with the configuration of
45 L<Perl::Critic>, whether from a F<.perlcriticrc>, another profile
46 file, or command line.
47
48 This is an abstract class.  It should never be instantiated.
49
50
51 =head1 METHODS
52
53 =over
54
55 =item C<source()>
56
57 Where the configuration information came from, if it could be determined.
58
59
60 =back
61
62
63 =head1 SEE ALSO
64
65 L<Perl::Critic::Exception::Configuration::Generic>
66 L<Perl::Critic::Exception::Configuration::Option>
67
68
69 =head1 AUTHOR
70
71 Elliot Shank <perl@galumph.com>
72
73 =head1 COPYRIGHT
74
75 Copyright (c) 2007-2008 Elliot Shank.  All rights reserved.
76
77 This program is free software; you can redistribute it and/or modify
78 it under the same terms as Perl itself.  The full text of this license
79 can be found in the LICENSE file included with this module.
80
81 =cut
82
83 # Local Variables:
84 #   mode: cperl
85 #   cperl-indent-level: 4
86 #   fill-column: 78
87 #   indent-tabs-mode: nil
88 #   c-indentation-style: bsd
89 # End:
90 # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :