/usr/share/perl5/HTTP/Exception/2XX.pm is in libhttp-exception-perl 0.04004-2.
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 | package HTTP::Exception::2XX;
{
$HTTP::Exception::2XX::VERSION = '0.04004';
}
use strict;
use base 'HTTP::Exception::Base';
sub is_info () { '' }
sub is_success () { 1 }
sub is_redirect () { '' }
sub is_error () { '' }
sub is_client_error () { '' }
sub is_server_error () { '' }
1;
=head1 NAME
HTTP::Exception::2XX - Base Class for 2XX (success) Exceptions
=head1 VERSION
version 0.04004
=head1 SYNOPSIS
nothing here yet
=head1 DESCRIPTION
This package is the base class for all 2XX (success) Exceptions.
This makes adding features for a range of exceptions easier.
DON'T USE THIS PACKAGE DIRECTLY. 'use HTTP::Exception' does this for you.
=head1 ADDITIONAL FIELDS
Fields, that 2XX-Exceptions provide over HTTP::Exceptions.
=head1 AUTHOR
Thomas Mueller, C<< <tmueller at cpan.org> >>
=head1 BUGS
Please report any bugs or feature requests to
C<bug-http-exception at rt.cpan.org>, or through the web interface at
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HTTP-Exception>.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc HTTP::Exception::Base
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=HTTP-Exception>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/HTTP-Exception>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/HTTP-Exception>
=item * Search CPAN
L<https://metacpan.org/release/HTTP-Exception>
=back
=head1 LICENSE AND COPYRIGHT
Copyright 2010 Thomas Mueller.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
|