File Coverage

blib/lib/HTTP/Throwable/Role/Status/HTTPVersionNotSupported.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 2 0.0
total 12 14 85.7


line stmt bran cond sub pod time code
1             package HTTP::Throwable::Role::Status::HTTPVersionNotSupported;
2             our $AUTHORITY = 'cpan:STEVAN';
3             $HTTP::Throwable::Role::Status::HTTPVersionNotSupported::VERSION = '0.026';
4 1     1   807 use Moo::Role;
  1         2  
  1         9  
5              
6             with(
7             'HTTP::Throwable',
8             'HTTP::Throwable::Role::BoringText',
9             );
10              
11 2     2 0 86 sub default_status_code { 505 }
12 2     2 0 7096 sub default_reason { 'HTTP Version Not Supported' }
13              
14 1     1   381 no Moo::Role; 1;
  1         2  
  1         5  
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             HTTP::Throwable::Role::Status::HTTPVersionNotSupported - 505 HTTP Version Not Supported
23              
24             =head1 VERSION
25              
26             version 0.026
27              
28             =head1 DESCRIPTION
29              
30             The server does not support, or refuses to support, the
31             HTTP protocol version that was used in the request message.
32             The server is indicating that it is unable or unwilling to
33             complete the request using the same major version as the
34             client, other than with this error message. The response
35             SHOULD contain an entity describing why that version is not
36             supported and what other protocols are supported by that
37             server.
38              
39             =head1 AUTHORS
40              
41             =over 4
42              
43             =item *
44              
45             Stevan Little
46              
47             =item *
48              
49             Ricardo Signes
50              
51             =back
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2011 by Infinity Interactive, Inc..
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut
61              
62             __END__