using System; namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions { /// /// Invalid key number specified. /// 0x9140 /// public class NoSuchKeyException : Exception { public NoSuchKeyException() { } public NoSuchKeyException(string message) : base(message) { } public NoSuchKeyException(string message, Exception inner) : base(message, inner) { } } }