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

27 lines
503 B
C#
Raw Permalink Normal View History

2021-03-30 22:51:02 +02:00
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)
{
}
}
}