mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
11 lines
205 B
C#
11 lines
205 B
C#
|
|
namespace Bit.Core.Exceptions;
|
|||
|
|
|
|||
|
|
public class DuplicateDomainException : Exception
|
|||
|
|
{
|
|||
|
|
public DuplicateDomainException()
|
|||
|
|
: base("A domain already exists for this organization.")
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|