mirror of
https://github.com/bitwarden/server.git
synced 2024-11-29 13:25:17 +01:00
11 lines
167 B
C#
11 lines
167 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class InvalidEmailException : Exception
|
|
{
|
|
public InvalidEmailException()
|
|
: base("Invalid email.")
|
|
{
|
|
|
|
}
|
|
}
|