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

27 lines
493 B
C#
Raw Normal View History

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