line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
############################################################################## |
2
|
|
|
|
|
|
|
# $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/distributions/PPIx-Utilities/lib/PPIx/Utilities/Exception/Bug.pm $ |
3
|
|
|
|
|
|
|
# $Date: 2010-12-01 20:31:47 -0600 (Wed, 01 Dec 2010) $ |
4
|
|
|
|
|
|
|
# $Author: clonezone $ |
5
|
|
|
|
|
|
|
# $Revision: 4001 $ |
6
|
|
|
|
|
|
|
############################################################################## |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package PPIx::Utilities::Exception::Bug; |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
27
|
use 5.006001; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
43
|
|
11
|
1
|
|
|
1
|
|
7
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
12
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
79
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our $VERSION = '1.001000'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
use Exception::Class ( |
18
|
1
|
|
|
|
|
13
|
'PPIx::Utilities::Exception::Bug' => { |
19
|
|
|
|
|
|
|
isa => 'Exception::Class::Base', |
20
|
|
|
|
|
|
|
description => 'A bug in either PPIx::Utilities or PPI.', |
21
|
|
|
|
|
|
|
}, |
22
|
1
|
|
|
1
|
|
1154
|
); |
|
1
|
|
|
|
|
30798
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__END__ |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=pod |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=for stopwords |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 NAME |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
PPIx::Utilities::Exception::Bug - A problem identified by L<PPIx::Utilities|PPIx::Utilities>. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 VERSION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This document describes PPIx::Utilities::Exception::Bug version 1.1.0. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 DESCRIPTION |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This represents a bug in either this module or in L<PPI|PPI>. Something that |
46
|
|
|
|
|
|
|
should never have happened, did happen. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 METHODS |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
None other than those inherited from L<Exception::Class|Exception::Class>. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 AUTHOR |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Elliot Shank <perl@galumph.com> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Copyright (c) 2010 Elliot Shank. All rights reserved. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
64
|
|
|
|
|
|
|
it under the same terms as Perl itself. The full text of this license |
65
|
|
|
|
|
|
|
can be found in the LICENSE file included with this module. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
# Local Variables: |
70
|
|
|
|
|
|
|
# mode: cperl |
71
|
|
|
|
|
|
|
# cperl-indent-level: 4 |
72
|
|
|
|
|
|
|
# fill-column: 78 |
73
|
|
|
|
|
|
|
# indent-tabs-mode: nil |
74
|
|
|
|
|
|
|
# c-indentation-style: bsd |
75
|
|
|
|
|
|
|
# End: |
76
|
|
|
|
|
|
|
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround : |