1
0
mirror of synced 2025-02-07 15:01:23 +01:00
2023-02-09 17:25:42 +08:00

8 lines
169 B
C#

namespace Application.Common.Exceptions;
public class CardExistsException : Exception
{
public CardExistsException(string? message) : base(message)
{
}
}