mirror of
https://github.com/bitwarden/server.git
synced 2025-04-18 03:28:15 -05:00
11 lines
167 B
C#
11 lines
167 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
public class InvalidEmailException : Exception
|
|
{
|
|
public InvalidEmailException()
|
|
: base("Invalid email.")
|
|
{
|
|
|
|
}
|
|
}
|