1
0
mirror of synced 2025-02-12 00:42:57 +01:00

8 lines
169 B
C#
Raw Normal View History

2023-02-09 17:25:42 +08:00
namespace Application.Common.Exceptions;
public class CardExistsException : Exception
{
public CardExistsException(string? message) : base(message)
{
}
}