mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
27 lines
504 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|