Files
server/src/Core/Exceptions/InvalidEmailException.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
197 B
C#
Raw Normal View History

namespace Bit.Core.Exceptions
{
public class InvalidEmailException : Exception
{
public InvalidEmailException()
: base("Invalid email.")
{
}
}
}