libs.nfc/NFC/Cards/NXP MIFARE DESFire/Exceptions/BoundaryErrorException.cs

27 lines
582 B
C#
Raw Normal View History

2021-03-30 22:51:02 +02:00
using System;
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Attempt toread/write data from/to beyond thefiles/records limits. Attempt to exceed the limitsof a value file.
/// 0x91BE
/// </summary>
public class BoundaryErrorException : Exception
{
public BoundaryErrorException()
{
}
public BoundaryErrorException(string message) : base(message)
{
}
public BoundaryErrorException(string message, Exception inner) : base(message, inner)
{
}
}
}