mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-13 07:11:46 +01:00
27 lines
558 B
C#
27 lines
558 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NFC.Cards.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)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|