mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
14 lines
212 B
C#
14 lines
212 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Exceptions
|
|||
|
|
{
|
|||
|
|
public class InvalidEmailException : Exception
|
|||
|
|
{
|
|||
|
|
public InvalidEmailException()
|
|||
|
|
: base("Invalid email.")
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|