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

27 lines
519 B
C#

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