1
0
mirror of synced 2025-02-15 02:02:38 +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)
{
}
}