mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 14:51:51 +01:00
27 lines
566 B
C#
27 lines
566 B
C#
using System;
|
|
|
|
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Currently not allowed to authenticate. Keeptrying until full delay is spent.
|
|
/// 0x91AD
|
|
/// </summary>
|
|
public class AuthenticationDelayException : Exception
|
|
{
|
|
public AuthenticationDelayException()
|
|
{
|
|
|
|
}
|
|
|
|
public AuthenticationDelayException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public AuthenticationDelayException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|