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

27 lines
499 B
C#

using System;
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Specified file number does not exist.
/// 0x91F0
/// </summary>
public class FileNotFoundException : Exception
{
public FileNotFoundException()
{
}
public FileNotFoundException(string message) : base(message)
{
}
public FileNotFoundException(string message, Exception inner) : base(message, inner)
{
}
}
}