mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 15:21:45 +01:00
27 lines
576 B
C#
27 lines
576 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NFC.NXP_MIFARE_DESFire.Exceptions
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Attempt toread/write data from/to beyond thefile’s/record’s 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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|