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 / Fatal / PolicyDefinition.pm
1 ##############################################################################
2 #      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/lib/Perl/Critic/Exception/Fatal/PolicyDefinition.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::Fatal::PolicyDefinition;
9
10 use 5.006001;
11 use strict;
12 use warnings;
13
14 use Readonly;
15
16 our $VERSION = '1.088';
17
18 #-----------------------------------------------------------------------------
19
20 use Exception::Class (
21     'Perl::Critic::Exception::Fatal::PolicyDefinition' => {
22         isa         => 'Perl::Critic::Exception::Fatal',
23         description => 'A bug in a policy was found.',
24         alias       => 'throw_policy_definition',
25     },
26 );
27
28 #-----------------------------------------------------------------------------
29
30 Readonly::Array our @EXPORT_OK => qw< throw_policy_definition >;
31
32 #-----------------------------------------------------------------------------
33
34
35 1;
36
37 __END__
38
39 #-----------------------------------------------------------------------------
40
41 =pod
42
43 =for stopwords
44
45 =head1 NAME
46
47 Perl::Critic::Exception::Fatal::PolicyDefinition - A bug in a policy.
48
49 =head1 DESCRIPTION
50
51 A bug in a policy was found, e.g. it didn't implement a method that it should
52 have.
53
54
55 =head1 METHODS
56
57 Only inherited ones.
58
59
60 =head1 AUTHOR
61
62 Elliot Shank <perl@galumph.com>
63
64 =head1 COPYRIGHT
65
66 Copyright (c) 2007-2008 Elliot Shank.  All rights reserved.
67
68 This program is free software; you can redistribute it and/or modify
69 it under the same terms as Perl itself.  The full text of this license
70 can be found in the LICENSE file included with this module.
71
72 =cut
73
74 # Local Variables:
75 #   mode: cperl
76 #   cperl-indent-level: 4
77 #   fill-column: 78
78 #   indent-tabs-mode: nil
79 #   c-indentation-style: bsd
80 # End:
81 # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :