| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package OIDC::Client::Error::Authentication; |
|
2
|
3
|
|
|
3
|
|
216509
|
use utf8; |
|
|
3
|
|
|
|
|
366
|
|
|
|
3
|
|
|
|
|
31
|
|
|
3
|
3
|
|
|
3
|
|
843
|
use Moose; |
|
|
3
|
|
|
|
|
434853
|
|
|
|
3
|
|
|
|
|
23
|
|
|
4
|
|
|
|
|
|
|
extends 'OIDC::Client::Error'; |
|
5
|
3
|
|
|
3
|
|
26070
|
use namespace::autoclean; |
|
|
3
|
|
|
|
|
7924
|
|
|
|
3
|
|
|
|
|
26
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=encoding utf8 |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
OIDC::Client::Error::Authentication |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Error class for an authentication problem. |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=cut |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
has '+message' => ( |
|
20
|
|
|
|
|
|
|
default => 'OIDC: authentication problem', |
|
21
|
|
|
|
|
|
|
); |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |