File Coverage

blib/lib/Perl/Critic/Exception/IO.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Perl::Critic::Exception::IO;
2              
3 40     40   709 use 5.010001;
  40         151  
4 40     40   225 use strict;
  40         97  
  40         828  
5 40     40   206 use warnings;
  40         84  
  40         971  
6              
7 40     40   205 use Readonly;
  40         132  
  40         3092  
8              
9 40     40   894 use Perl::Critic::Utils qw{ :characters };
  40         132  
  40         1991  
10              
11             our $VERSION = '1.150';
12              
13             #-----------------------------------------------------------------------------
14              
15             use Exception::Class (
16 40         568 'Perl::Critic::Exception::IO' => {
17             isa => 'Perl::Critic::Exception',
18             description => 'An input/output problem.',
19             fields => [ qw< file_name errno > ],
20             alias => 'throw_io',
21             },
22 40     40   10140 );
  40         108  
23              
24             #-----------------------------------------------------------------------------
25              
26             Readonly::Array our @EXPORT_OK => qw< throw_io >;
27              
28             #-----------------------------------------------------------------------------
29              
30             1;
31              
32             #-----------------------------------------------------------------------------
33              
34             __END__
35              
36             =pod
37              
38             =for stopwords
39              
40             =head1 NAME
41              
42             Perl::Critic::Exception::IO - A problem with input or output.
43              
44             =head1 DESCRIPTION
45              
46             The outside world can do nasty things to your poor, innocent code.
47              
48              
49             =head1 INTERFACE SUPPORT
50              
51             This is considered to be a public class. Any changes to its interface
52             will go through a deprecation cycle.
53              
54              
55             =head1 METHODS
56              
57             =over
58              
59             =item C<file_name()>
60              
61             Returns the name of the file that the problem was found with, if available.
62              
63              
64             =item C<errno()>
65              
66             The value of C<$ERRNO>/C<$!> at the time the problem was found.
67              
68              
69             =back
70              
71              
72             =head1 AUTHOR
73              
74             Elliot Shank <perl@galumph.com>
75              
76             =head1 COPYRIGHT
77              
78             Copyright (c) 2007-2023 Elliot Shank
79              
80             This program is free software; you can redistribute it and/or modify
81             it under the same terms as Perl itself. The full text of this license
82             can be found in the LICENSE file included with this module.
83              
84             =cut
85              
86             ##############################################################################
87             # Local Variables:
88             # mode: cperl
89             # cperl-indent-level: 4
90             # fill-column: 78
91             # indent-tabs-mode: nil
92             # c-indentation-style: bsd
93             # End:
94             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :