NAME

Authen::U2F::Tester::Error - Authen::U2F::Tester Error Response

VERSION

version 0.01

SYNOPSIS

$r = $tester->register(...);

# or

$r = $tester->sign(...);

unless ($r->is_success) {
    print $r->error_code;
    print $r->error_message;
}

DESCRIPTION

This object is returned from Authen::U2F::Tester sign or register requests if the request resulted in an error.

METHODS

new(int)

Single arg constructor. Argument is a U2F error code. See Authen::U2F::Tester::Const for constants that should be used for this.

error_code(): int

Get the error code

error_message(): string

Get the error message

is_success(): bool

Returns false as this object is only returned for errors.

SEE ALSO

SOURCE

The development version is on github at https://github.com/mschout/perl-authen-u2f-tester and may be cloned from git://github.com/mschout/perl-authen-u2f-tester.git

BUGS

Please report any bugs or feature requests to bug-authen-u2f-tester@rt.cpan.org or through the web interface at: http://rt.cpan.org/Public/Dist/Display.html?Name=Authen-U2F-Tester

AUTHOR

Michael Schout <mschout@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by Michael Schout.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.