File Coverage

blib/lib/Konfidi/Client/Error.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # <@LICENSE>
2             # Licensed under the Apache License, Version 2.0 (the "License");
3             # you may not use this file except in compliance with the License.
4             # You may obtain a copy of the License at
5             #
6             # http://www.apache.org/licenses/LICENSE-2.0
7             #
8             # Unless required by applicable law or agreed to in writing, software
9             # distributed under the License is distributed on an "AS IS" BASIS,
10             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11             # See the License for the specific language governing permissions and
12             # limitations under the License.
13             #
14              
15             package Konfidi::Client::Error;
16              
17 4     4   90621 use warnings;
  4         9  
  4         270  
18 4     4   30 use strict;
  4         9  
  4         306  
19              
20             =head1 NAME
21              
22             Konfidi::Client::Error - An error from a L
23              
24             =head1 DESCRIPTION
25              
26             See L for error handling documentation
27              
28             =head1 VERSION
29              
30             Version 1.0.4
31              
32             =cut
33              
34             our $VERSION = '1.0.4';
35              
36 4     4   27 use base 'Error::Simple';
  4         9  
  4         5488  
37              
38             1;