8 lines
204 B
C#
8 lines
204 B
C#
using Domain.Enums;
|
|
|
|
namespace Application.Exceptions;
|
|
|
|
public class DuplicateEmailException(string email) : BaseException(EErrorCategory.UserValidationError, $"Email {email} already registered")
|
|
{
|
|
|
|
} |