using System; namespace NFC.NXP_MIFARE_DESFire.Exceptions { /// /// CRC or MAC does not match data. Paddingbytes not valid. /// 0x911E /// public class IntegrityErrorException : Exception { public IntegrityErrorException() { } public IntegrityErrorException(string message) : base(message) { } public IntegrityErrorException(string message, Exception inner) : base(message, inner) { } } }