mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 01:43:15 +08:00
11 lines
190 B
C#
11 lines
190 B
C#
|
|
namespace Bit.Core.Exceptions;
|
|||
|
|
|
|||
|
|
public class DomainVerifiedException : Exception
|
|||
|
|
{
|
|||
|
|
public DomainVerifiedException()
|
|||
|
|
: base("Domain has already been verified.")
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|