mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 14:51:51 +01:00
27 lines
503 B
C#
27 lines
503 B
C#
using System;
|
|
|
|
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// Length of command string invalid.
|
|
/// 0x917E
|
|
/// </summary>
|
|
public class LengthErrorException : Exception
|
|
{
|
|
public LengthErrorException()
|
|
{
|
|
|
|
}
|
|
|
|
public LengthErrorException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public LengthErrorException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|