Build all packages removed dependencies of libtest-exception-perl libtest-warn-perl...
[dh-make-perl] / dev / i386 / libperl-critic-perl / libperl-critic-perl-1.088 / lib / Perl / Critic / Exception / Fatal / Internal.pm
1 ##############################################################################
2 #      $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/lib/Perl/Critic/Exception/Fatal/Internal.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::Internal;
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::Internal' => {
22         isa         => 'Perl::Critic::Exception::Fatal',
23         description => 'A problem with the Perl::Critic code was found, a.k.a. a bug.',
24         alias       => 'throw_internal',
25     },
26 );
27
28 #-----------------------------------------------------------------------------
29
30 Readonly::Array our @EXPORT_OK => qw< throw_internal >;
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::Internal - A problem with the L<Perl::Critic> implementation, i.e. a bug.
48
49 =head1 DESCRIPTION
50
51 A representation of a bug found in the code of L<Perl::Critic>.
52
53
54 =head1 METHODS
55
56 Only inherited ones.
57
58
59 =head1 AUTHOR
60
61 Elliot Shank <perl@galumph.com>
62
63 =head1 COPYRIGHT
64
65 Copyright (c) 2007-2008 Elliot Shank.  All rights reserved.
66
67 This program is free software; you can redistribute it and/or modify
68 it under the same terms as Perl itself.  The full text of this license
69 can be found in the LICENSE file included with this module.
70
71 =cut
72
73 # Local Variables:
74 #   mode: cperl
75 #   cperl-indent-level: 4
76 #   fill-column: 78
77 #   indent-tabs-mode: nil
78 #   c-indentation-style: bsd
79 # End:
80 # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :