mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-13 23:31:52 +01:00
27 lines
479 B
C#
27 lines
479 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Invalid key number specified.
|
|||
|
/// 0x9140
|
|||
|
/// </summary>
|
|||
|
public class NoSuchKeyException : Exception
|
|||
|
{
|
|||
|
public NoSuchKeyException()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public NoSuchKeyException(string message) : base(message)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public NoSuchKeyException(string message, Exception inner) : base(message, inner)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|