mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00: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>
10 lines
173 B
C#
10 lines
173 B
C#
namespace Bit.Core.Exceptions;
|
|
|
|
#nullable enable
|
|
|
|
public class DnsQueryException : Exception
|
|
{
|
|
public DnsQueryException(string message)
|
|
: base(message) { }
|
|
}
|