File Coverage

blib/lib/OIDC/Client/Error/TokenValidation.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::TokenValidation;
2 11     11   223413 use utf8;
  11         443  
  11         112  
3 11     11   1072 use Moose;
  11         635365  
  11         92  
4             extends 'OIDC::Client::Error';
5 11     11   83305 use namespace::autoclean;
  11         11676  
  11         103  
6              
7             =encoding utf8
8              
9             =head1 NAME
10              
11             OIDC::Client::Error::TokenValidation
12              
13             =head1 DESCRIPTION
14              
15             Error class for a token validation problem.
16              
17             =cut
18              
19             has '+message' => (
20             default => 'OIDC: token validation problem',
21             );
22              
23             __PACKAGE__->meta->make_immutable;
24              
25             1;