borepin/NFC/NXP MIFARE DESFire/Exceptions/AuthenticationDelayException.cs
2020-10-07 19:25:51 +02:00

27 lines
560 B
C#

using System;
namespace NFC.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)
{
}
}
}