libs.nfc/NFC/Cards/NXP MIFARE DESFire/Exceptions/IntegrityErrorException.cs
2021-03-30 22:51:02 +02:00

27 lines
525 B
C#

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