mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 07:11:56 +01:00
27 lines
540 B
C#
27 lines
540 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|