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

27 lines
556 B
C#
Raw Normal View History

2020-10-07 19:25:51 +02:00
using System;
namespace NFC.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Creation of file/application failed because file/application with same number already exists
/// 0x91DE
/// </summary>
public class DuplicateErrorException : Exception
{
public DuplicateErrorException()
{
}
public DuplicateErrorException(string message) : base(message)
{
}
public DuplicateErrorException(string message, Exception inner) : base(message, inner)
{
}
}
}