mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-13 07:11:46 +01:00
27 lines
513 B
C#
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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|