mirror of
https://github.com/bitwarden/server.git
synced 2025-06-07 19:50:32 -05:00

* Enable NRT for Core/Jobs files * Enable NRT for Core/HostedServices files * Enable NRT for Core/Exceptions files * Enable NRT for Core/NotificationHub files --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
13 lines
223 B
C#
13 lines
223 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
#nullable enable
|
|
|
|
public class DuplicateDomainException : Exception
|
|
{
|
|
public DuplicateDomainException()
|
|
: base("A domain already exists for this organization.")
|
|
{
|
|
|
|
}
|
|
}
|