mirror of
https://github.com/bitwarden/server
synced 2025-12-20 10:13:39 +00:00
11 lines
167 B
C#
11 lines
167 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class InvalidEmailException : Exception
|
|
{
|
|
public InvalidEmailException()
|
|
: base("Invalid email.")
|
|
{
|
|
|
|
}
|
|
}
|