mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 15:21:45 +01:00
27 lines
519 B
C#
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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|