2022-06-29 19:46:41 -04:00
|
|
|
|
namespace Bit.Core.Exceptions;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2022-06-29 19:46:41 -04:00
|
|
|
|
public class InvalidEmailException : Exception
|
2022-06-16 17:45:26 +01:00
|
|
|
|
{
|
|
|
|
|
|
public InvalidEmailException()
|
|
|
|
|
|
: base("Invalid email.")
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|