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

27 lines
557 B
C#
Raw Normal View History

2020-10-07 19:25:51 +02:00
using System;
namespace NFC.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Previous Command was not fully completed.Not all Frames were requested or provided bythe PCD.
/// 0x91CA
/// </summary>
public class CommandAbortedException : Exception
{
public CommandAbortedException()
{
}
public CommandAbortedException(string message) : base(message)
{
}
public CommandAbortedException(string message, Exception inner) : base(message, inner)
{
}
}
}