Hermod
A cross-platform, modular and fully GDPR-compliant email archival solution!
Loading...
Searching...
No Matches
PluginLoadException.cs
Go to the documentation of this file.
1using System;
2
4
8 public class PluginLoadException: Exception {
9 public PluginLoadException(string? pluginName): base("Failed to load plugin!") {
10 PluginName = pluginName;
11 }
12
13 public string? PluginName { get; }
14 }
15}
16
Exception class that is thrown when a plugin failed to load.