borepin/NFC/NXP MIFARE DESFire/Exceptions/LengthErrorException.cs

27 lines
497 B
C#
Raw Normal View History

2020-10-07 19:25:51 +02:00
using System;
namespace NFC.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)
{
}
}
}