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