Hermod
A cross-platform, modular and fully GDPR-compliant email archival solution!
Loading...
Searching...
No Matches
MalformedTopicException.cs
Go to the documentation of this file.
1using System;
2
4
8 public class MalformedTopicException: Exception {
9
15 public MalformedTopicException(string topic, string? message): base(message) {
16 Topic = topic;
17 }
18
22 public string Topic { get; }
23 }
24}
25
Exception class that is thrown when a topic for IPC is malformed.
MalformedTopicException(string topic, string? message)
Constructs a new instance of this class.