This file is indexed.

/usr/share/perl5/CLI/Framework/Exceptions.pm is in libcli-framework-perl 0.05-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
package CLI::Framework::Exceptions;

use strict;
use warnings;

our $VERSION = 0.02;

# Make it possible to use aliases directly in client code...
use Exporter qw( import );
our @EXPORT_OK = qw(
    throw_clif_exception
    throw_app_hook_exception
    throw_app_opts_parse_exception
    throw_app_opts_validation_exception
    throw_app_init_exception
    throw_invalid_cmd_exception
    throw_cmd_registration_exception
    throw_type_exception
    throw_cmd_opts_parse_exception
    throw_cmd_validation_exception
    throw_cmd_run_exception
);

our %EXPORT_TAGS = ( all => \@EXPORT_OK );

# Create exception class hierarchy...
use Exception::Class (
    'CLI::Framework::Exception' => {
        description =>  'General CLIF error',
        alias       =>  'throw_clif_exception',
    },
    'CLI::Framework::Exception::AppHookException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Application hook method failed preconditions',
        alias       => 'throw_app_hook_exception',
    },
    'CLI::Framework::Exception::AppOptsParsingException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed parsing of application options',
        alias       => 'throw_app_opts_parse_exception'
    },
    'CLI::Framework::Exception::AppOptsValidationException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed validation of application options',
        alias       => 'throw_app_opts_validation_exception'
    },
    'CLI::Framework::Exception::AppInitException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed application initialization',
        alias       => 'throw_app_init_exception'
    },
    'CLI::Framework::Exception::InvalidCmdException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Invalid command',
        alias       => 'throw_invalid_cmd_exception'
    },
    'CLI::Framework::Exception::CmdRegistrationException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed command registration',
        alias       => 'throw_cmd_registration_exception',
    },
    'CLI::Framework::Exception::TypeException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Object is not of the proper type',
        alias       => 'throw_type_exception',
    },
    'CLI::Framework::Exception::CmdOptsParsingException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed parsing of command options',
        alias       => 'throw_cmd_opts_parse_exception'
    },
    'CLI::Framework::Exception::CmdValidationException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failed validation of command options/arguments',
        alias       => 'throw_cmd_validation_exception'
    },
    'CLI::Framework::Exception::CmdRunException' => {
        isa         => 'CLI::Framework::Exception',
        description => 'Failure to run command',
        alias       => 'throw_cmd_run_exception'
    },
);

#-------
1;

__END__

=pod

=head1 NAME

CLI::Framework::Exceptions - Exceptions used by CLIF

=head1 EXCEPTION TYPES

This package defines the following exception types.  These exception objects
are created using L<Exception::Class> and are subtypes of
L<Exception::Class::Base>.

=head2 CLI::Framework::Exception

=over

=item description

General CLIF error

=item alias

C<throw_clif_exception>

=back

=head2 CLI::Framework::Exception::AppHookException

=over

=item description

Application hook method failed preconditions

=item alias

C<throw_app_hook_exception>

=back

=head2 CLI::Framework::Exception::AppOptsParsingException

=over

=item description

Failed parsing of application options

=item alias

C<throw_app_opts_parse_exception>

=back

=head2 CLI::Framework::Exception::AppOptsValidationException

=over

=item description

Failed validation of application options

=item alias

C<throw_app_opts_validation_exception>

=back

=head2 CLI::Framework::Exception::AppInitException

=over

=item description

Failed application initialization

=item alias

C<throw_app_init_exception>

=back

=head2 CLI::Framework::Exception::InvalidCmdException

=over

=item description

C<Invalid command>

=item alias

C<throw_invalid_cmd_exception>

=back

=head2 CLI::Framework::Exception::CmdRegistrationException

=over

=item description

Failed command registration

=item alias

C<throw_cmd_registration_exception>

=back

=head2 CLI::Framework::Exception::TypeException

=over

=item description

Object is not of the proper type

=item alias

C<throw_type_exception>

=back

=head2 CLI::Framework::Exception::CmdOptsParsingException

=over

=item description

Failed parsing of command options

=item alias

C<throw_cmd_opts_parse_exception>

=back

=head2 CLI::Framework::Exception::CmdValidationException

=over

=item description

Failed validation of command options/arguments

=item alias

C<throw_cmd_validation_exception>

=back

=head2 CLI::Framework::Exception::CmdRunException

=over

=item description

Failure to run command

=item alias

C<throw_cmd_run_exception>

=back

=head1 EXPORTS

All aliases are available for use by client code (but none are exported by
default).  The ':all' tag causes all of the C<alias>es to be exported.

=head1 SEE ALSO

L<Exception::Class>

L<CLI::Framework::Application>

=cut