mirror of
https://github.com/bitwarden/server.git
synced 2026-02-10 02:43:17 +08:00
8 lines
155 B
C#
8 lines
155 B
C#
|
|
namespace Bit.Core.Exceptions;
|
|||
|
|
|
|||
|
|
public class DnsQueryException : Exception
|
|||
|
|
{
|
|||
|
|
public DnsQueryException(string message)
|
|||
|
|
: base(message) { }
|
|||
|
|
}
|