mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
9 lines
263 B
C#
9 lines
263 B
C#
namespace ShoppingAssistantApi.Application.Exceptions;
|
|
|
|
public class InvalidEmailException : Exception
|
|
{
|
|
public InvalidEmailException() { }
|
|
|
|
public InvalidEmailException(string email) : base(String.Format($"String {email} can not be an email.")) { }
|
|
}
|