mirror of
https://github.com/bitwarden/android.git
synced 2026-05-21 11:56:35 -05:00
17 lines
358 B
C#
17 lines
358 B
C#
namespace Bit.Core.Utilities.Fido2
|
|
{
|
|
public class Fido2AuthenticatorException : Exception
|
|
{
|
|
public Fido2AuthenticatorException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
|
|
public class NotAllowedError : Fido2AuthenticatorException
|
|
{
|
|
public NotAllowedError() : base("NotAllowedError")
|
|
{
|
|
}
|
|
}
|
|
}
|