libs.nfc/NFC/Cards/NXP MIFARE DESFire/Exceptions/IllegalCommandCodeException.cs
2021-03-30 22:51:02 +02:00

27 lines
513 B
C#

using System;
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Command code not supported.
/// 0x911C
/// </summary>
public class IllegalCommandCodeException : Exception
{
public IllegalCommandCodeException()
{
}
public IllegalCommandCodeException(string message) : base(message)
{
}
public IllegalCommandCodeException(string message, Exception inner) : base(message, inner)
{
}
}
}