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

27 lines
540 B
C#
Raw Normal View History

2020-10-07 19:25:51 +02:00
using System;
namespace NFC.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Current configuration / status does not allow the requested command.
/// 0x919D
/// </summary>
public class PermissionDeniedException : Exception
{
public PermissionDeniedException()
{
}
public PermissionDeniedException(string message) : base(message)
{
}
public PermissionDeniedException(string message, Exception inner) : base(message, inner)
{
}
}
}