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

27 lines
498 B
C#

using System;
namespace NFC.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)
{
}
}
}