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