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