borepin/NFC/NXP MIFARE DESFire/Exceptions/AuthenticationErrorException.cs
2020-10-07 19:25:51 +02:00

27 lines
552 B
C#

using System;
namespace NFC.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Current authentication status does not allow there- quested command.
/// 0x91AE
/// </summary>
public class AuthenticationErrorException : Exception
{
public AuthenticationErrorException()
{
}
public AuthenticationErrorException(string message) : base(message)
{
}
public AuthenticationErrorException(string message, Exception inner) : base(message, inner)
{
}
}
}