Hermod
A cross-platform, modular and fully GDPR-compliant email archival solution!
Loading...
Searching...
No Matches
MalformedDomainException.cs
Go to the documentation of this file.
1using System;
2
4
8 public class MalformedDomainException: Exception {
9
14 public MalformedDomainException(string fqdn): base("Encountered malformed FQDN!") {
15 Fqdn = fqdn;
16 }
17
21 public string Fqdn { get; }
22 }
23}
24
Exception class that is thrown when a malformed FQDN (fully-qualified domain name) was passed somewhe...
MalformedDomainException(string fqdn)
Constructs a new instance of this class.