mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 14:51:51 +01:00
23 lines
360 B
C#
23 lines
360 B
C#
using System;
|
|
|
|
namespace NFC.Exceptions
|
|
{
|
|
public class TransmitException : Exception
|
|
{
|
|
public TransmitException()
|
|
{
|
|
|
|
}
|
|
|
|
public TransmitException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
|
|
public TransmitException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|