mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
10 lines
145 B
C#
10 lines
145 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NFC.Exceptions
|
|||
|
{
|
|||
|
public class APDUException : Exception
|
|||
|
{
|
|||
|
public readonly byte ResponseCode;
|
|||
|
}
|
|||
|
}
|