File Coverage

blib/lib/OIDC/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             package OIDC::Client::Error;
2 21     21   179281 use utf8;
  21         593  
  21         182  
3 21     21   1819 use Moose;
  21         627005  
  21         169  
4             extends 'Throwable::Error';
5 21     21   161855 use namespace::autoclean;
  21         11157  
  21         171  
6              
7             =encoding utf8
8              
9             =head1 NAME
10              
11             OIDC::Client::Error - Base class of an error
12              
13             =head1 DESCRIPTION
14              
15             Library error parent class.
16              
17             =cut
18              
19             __PACKAGE__->meta->make_immutable;
20              
21             1;