File Coverage

blib/lib/OIDC/Client/Error/InvalidResponse.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::InvalidResponse;
2 8     8   203638 use utf8;
  8         264  
  8         78  
3 8     8   787 use Moose;
  8         506530  
  8         51  
4             extends 'OIDC::Client::Error';
5 8     8   62668 use namespace::autoclean;
  8         8159  
  8         71  
6              
7             =encoding utf8
8              
9             =head1 NAME
10              
11             OIDC::Client::Error::InvalidResponse
12              
13             =head1 DESCRIPTION
14              
15             Error class for an invalid response problem.
16              
17             =cut
18              
19             has '+message' => (
20             default => 'OIDC: invalid response',
21             );
22              
23             __PACKAGE__->meta->make_immutable;
24              
25             1;