File Coverage

blib/lib/PLS/Server/Response/InvalidRequest.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             package PLS::Server::Response::InvalidRequest;
2              
3 9     9   47 use strict;
  9         18  
  9         225  
4 9     9   37 use warnings;
  9         17  
  9         204  
5              
6 9     9   37 use parent 'PLS::Server::Response';
  9         17  
  9         44  
7              
8             =head1 NAME
9              
10             PLS::Server::Response::InvalidRequest
11              
12             =head1 DESCRIPTION
13              
14             This is an error sent from the server to the client indicating that the
15             client sent an invalid request.
16              
17             =cut
18              
19             sub new
20             {
21 1     1 0 3 my ($class, $request) = @_;
22              
23             return
24             bless {
25             id => $request->{id},
26 1         25 error => {
27             code => -32600,
28             message => 'Invalid request.'
29             }
30             }, $class;
31             } ## end sub new
32              
33             1;