use utf8;
use Moose;
=encoding utf8
=head1 NAME
OIDC::Client::Error::Authentication
=head1 DESCRIPTION
Error class for an authentication problem.
=cut
has '+message' => (
default => 'OIDC: authentication problem',
);
__PACKAGE__->meta->make_immutable;
1;