mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
27 lines
499 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|