libs.nfc/NFC/Cards/NXP MIFARE DESFire/Exceptions/ParameterErrorException.cs
2021-03-30 22:51:02 +02:00

27 lines
504 B
C#

using System;
namespace NFC.Cards.NXP_MIFARE_DESFire.Exceptions
{
/// <summary>
/// Value of the parameter(s) invalid.
/// 0x919E
/// </summary>
public class ParameterErrorException : Exception
{
public ParameterErrorException()
{
}
public ParameterErrorException(string message) : base(message)
{
}
public ParameterErrorException(string message, Exception inner) : base(message, inner)
{
}
}
}