using System; namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions { /// /// Currently not allowed to authenticate. Keeptrying until full delay is spent. /// 0x91AD /// public class AuthenticationDelayException : Exception { public AuthenticationDelayException() { } public AuthenticationDelayException(string message) : base(message) { } public AuthenticationDelayException(string message, Exception inner) : base(message, inner) { } } }