File Coverage

blib/lib/PLS/Server/Response/Cancelled.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::Cancelled;
2              
3 11     11   76 use strict;
  11         22  
  11         473  
4 11     11   64 use warnings;
  11         22  
  11         669  
5              
6 11     11   69 use parent q(PLS::Server::Response);
  11         30  
  11         95  
7              
8             =head1 NAME
9              
10             PLS::Server::Response::Cancelled
11              
12             =head1 DESCRIPTION
13              
14             This is a message from the server to the client indicating that
15             a request has been cancelled.
16              
17             =cut
18              
19             sub new
20             {
21 1     1 0 12 my ($class, %args) = @_;
22              
23             return
24             bless {
25             id => $args{id},
26 1         21 error => {code => -32_800, message => 'Request cancelled.'}
27             }, $class;
28             } ## end sub new
29              
30             1;